diff --git a/robots/robotchangma/build/local/robot-config.xml b/robots/robotchangma/build/local/robot-config.xml new file mode 100644 index 0000000..2f7c01c --- /dev/null +++ b/robots/robotchangma/build/local/robot-config.xml @@ -0,0 +1,8 @@ + + + 670680 + 18 + blm523 + 47.109.55.7 + 6311 + \ No newline at end of file diff --git a/robots/robotchangma/build/local/taurus-core.xml b/robots/robotchangma/build/local/taurus-core.xml new file mode 100644 index 0000000..e677c8e --- /dev/null +++ b/robots/robotchangma/build/local/taurus-core.xml @@ -0,0 +1,96 @@ + + + log4j.properties + + + database + com.taurus.core.plugin.database.DataBasePlugin + + + + 100 + + 10 + + 180000 + + select 1 + + 10000 + + 60000 + + + + false + true + utf-8 + + UTC + + true + + 250 + + 2048 + + + + + + db1 + com.mysql.cj.jdbc.Driver + jdbc:mysql://192.168.0.11:6060/wb_game + proto_ff + 37du_game + + + + + + redis + com.taurus.core.plugin.redis.RedisPlugin + + + + 80 + + 20 + + 5 + + -1 + + true + + true + + true + + 100 + + 60000 + + 30000 + + 1800000 + + true + + + + + + + + + + + \ No newline at end of file diff --git a/robots/robotchangma/build/pro/bank_hp.lua b/robots/robotchangma/build/pro/bank_hp.lua new file mode 100644 index 0000000..d3a02ce --- /dev/null +++ b/robots/robotchangma/build/pro/bank_hp.lua @@ -0,0 +1,19 @@ +local tag_hp = tonumber(redis.call('hget', KEYS[1],'hp')) +local bank_hp = tonumber(redis.call('hget', KEYS[2],KEYS[3])) +bank_hp = not bank_hp and 0 or bank_hp +local hp = tonumber(ARGV[1]) +local opt = tonumber(ARGV[2]) +if opt==0 then + if bank_hp < hp then + return 3 + end + bank_hp = redis.call('hincrBy',KEYS[2],KEYS[3],-hp) + tag_hp = redis.call('hincrBy',KEYS[1],'hp',hp) +else + if tag_hp < hp then + return 4 + end + bank_hp = redis.call('hincrBy',KEYS[2],KEYS[3],hp) + tag_hp = redis.call('hincrBy',KEYS[1],'hp',-hp) +end +return {tag_hp,bank_hp} \ No newline at end of file diff --git a/robots/robotchangma/build/pro/log4j.properties b/robots/robotchangma/build/pro/log4j.properties new file mode 100644 index 0000000..6786dba --- /dev/null +++ b/robots/robotchangma/build/pro/log4j.properties @@ -0,0 +1,20 @@ + +log4j.rootLogger = INFO,consoleAppender,fileAppender + +# ConsoleAppender +log4j.appender.consoleAppender=org.apache.log4j.ConsoleAppender +log4j.appender.consoleAppender.layout=org.apache.log4j.PatternLayout +log4j.appender.consoleAppender.layout.ConversionPattern=%d{HH:mm:ss,SSS} %-5p [%t] %c{2} %3x - %m%n + + +# Regular FileAppender +log4j.appender.fileAppender=org.apache.log4j.DailyRollingFileAppender +log4j.appender.fileAppender.layout=org.apache.log4j.PatternLayout +log4j.appender.fileAppender.File=${WORKDIR}/logs/web_main.log +log4j.appender.fileAppender.layout.ConversionPattern=%d{dd MMM yyyy | HH:mm:ss,SSS} | %-5p | %t | %c{3} | %3x | %m%n +log4j.appender.fileAppender.Encoding=UTF-8 +log4j.appender.fileAppender.DatePattern='.'yyyy-MM-dd +log4j.appender.dailyFile.Append=true + +# The file is rolled over very day +log4j.appender.fileAppender.DatePattern ='.'yyyy-MM-dd \ No newline at end of file diff --git a/robots/robotchangma/build/pro/mgr.lua b/robots/robotchangma/build/pro/mgr.lua new file mode 100644 index 0000000..50b3c69 --- /dev/null +++ b/robots/robotchangma/build/pro/mgr.lua @@ -0,0 +1,25 @@ +-- redis.call('select',0) +local mgr_hp = tonumber(redis.call('hget', KEYS[1],'hp')) +local tag_hp = tonumber(redis.call('hget', KEYS[2],'hp')) + +local ulev = tonumber(ARGV[2]) +local hp = tonumber(ARGV[1]) +if ulev == 3 or ulev == 2 then + if hp > 0 and mgr_hp + + 670680 + 18 + blm523 + 47.109.55.7 + 6311 + \ No newline at end of file diff --git a/robots/robotchangma/build/pro/take_hp.lua b/robots/robotchangma/build/pro/take_hp.lua new file mode 100644 index 0000000..83d79a0 --- /dev/null +++ b/robots/robotchangma/build/pro/take_hp.lua @@ -0,0 +1,10 @@ +local reward_hp = tonumber(redis.call('get', KEYS[1])) +local hp = tonumber(ARGV[1]) +local tag_hp = 0 +if hp > 0 and reward_hp < hp then + return 3 +else + reward_hp = redis.call('incrBy',KEYS[1],-hp) + tag_hp = redis.call('hincrBy',KEYS[2],'hp',hp) +end +return {reward_hp,tag_hp} \ No newline at end of file diff --git a/robots/robotchangma/build/pro/taurus-core.xml b/robots/robotchangma/build/pro/taurus-core.xml new file mode 100644 index 0000000..49c529b --- /dev/null +++ b/robots/robotchangma/build/pro/taurus-core.xml @@ -0,0 +1,100 @@ + + + log4j.properties + + + database + com.taurus.core.plugin.database.DataBasePlugin + + + + 100 + + 10 + + 180000 + + select 1 + + 10000 + + 60000 + + + + false + true + utf-8 + + UTC + + true + + 250 + + 2048 + + + + + + db1 + com.mysql.cj.jdbc.Driver + jdbc:mysql://47.109.55.7:8060/wb_game + root + 6KYnXJjGhxNceF8e + + + + + + redis + com.taurus.core.plugin.redis.RedisPlugin + + + + 80 + + 20 + + 5 + + -1 + + true + + true + + true + + 100 + + 60000 + + 30000 + + 1800000 + + true + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/robots/robotchangma/build/pro/trade.lua b/robots/robotchangma/build/pro/trade.lua new file mode 100644 index 0000000..c03a438 --- /dev/null +++ b/robots/robotchangma/build/pro/trade.lua @@ -0,0 +1,12 @@ +local mgr_hp = tonumber(redis.call('hget', KEYS[1],'hp')) +local tag_hp = tonumber(redis.call('hget', KEYS[2],'hp')) +mgr_hp = not mgr_hp and 0 or mgr_hp +tag_hp = not tag_hp and 0 or tag_hp +local hp = tonumber(ARGV[1]) +if hp > 0 and mgr_hp 0 and mgr_hp 0 and reward_hp < hp then + return 3 +else + reward_hp = redis.call('incrBy',KEYS[1],-hp) + tag_hp = redis.call('hincrBy',KEYS[2],'hp',hp) +end +return {reward_hp,tag_hp} \ No newline at end of file diff --git a/robots/robotchangma/build/test/taurus-core.xml b/robots/robotchangma/build/test/taurus-core.xml new file mode 100644 index 0000000..bde0e53 --- /dev/null +++ b/robots/robotchangma/build/test/taurus-core.xml @@ -0,0 +1,99 @@ + + + log4j.properties + + + database + com.taurus.core.plugin.database.DataBasePlugin + + + + 100 + + 1 + + 180000 + + select 1 + + 10000 + + 60000 + + + + false + true + utf-8 + + UTC + + true + + 250 + + 2048 + + + + + + db1 + com.mysql.cj.jdbc.Driver + jdbc:mysql://192.168.0.11:6060/wb_game + proto_ff + 37du_game + + + + + + redis + com.taurus.core.plugin.redis.RedisPlugin + + + + 80 + + 8 + + 2 + + -1 + + true + + true + + true + + 100 + + 60000 + + 30000 + + 1800000 + + true + + + + + + + + + + + + + + \ No newline at end of file diff --git a/robots/robotchangma/build/test/trade.lua b/robots/robotchangma/build/test/trade.lua new file mode 100644 index 0000000..c03a438 --- /dev/null +++ b/robots/robotchangma/build/test/trade.lua @@ -0,0 +1,12 @@ +local mgr_hp = tonumber(redis.call('hget', KEYS[1],'hp')) +local tag_hp = tonumber(redis.call('hget', KEYS[2],'hp')) +mgr_hp = not mgr_hp and 0 or mgr_hp +tag_hp = not tag_hp and 0 or tag_hp +local hp = tonumber(ARGV[1]) +if hp > 0 and mgr_hp robotmap; + private static String gameHost; private static String gamePort; @@ -119,9 +121,107 @@ public class MainServer extends Extension { robotUser.setGamePort(gamePort); robotUser.setRobotGroupid(groupid); robotUser.setRobotPid(pid); + robotUser.setHuNanChangSha(); + /* + Thread eventThread = new Thread(() -> { + while (true) { + try { + + if(!robotUser.isLogin){ + robotUser.login(); + } + //2、链接 + //判断是否链接 + + if(!robotUser.getisconnect()){ + robotUser.connectGame(); + }else{ + robotUser.renconnect(); + } + + //检测是否断开链接 + robotUser.checkIsConnect(); + + //4、加入房间 + if(robotUser.getStatus()==0){ + //没状态时候进入加入房间 + robotUser.joinRoom(); + } + //3、创建房间 + if(robotUser.getStatus()==ROBOTEventType.ROBOT_UNUSE){ + //没状态时候进入创建房间 + robotUser.createRoom(); + } + System.out.println("robotUser.getIntoRoomTime()"+robotUser.getIntoRoomTime()); + System.out.println("robGetTiem"+robotUser.getTime()); + if(robotUser.getIntoRoomTime()+6<=robotUser.getTime()){ + //5、退出房间 + robotUser.outoRoom(); + } + + Thread.sleep(10000); + } catch (InterruptedException e) { + break; + } catch (Exception e) { + } + } + }, Integer.parseInt(entry.getKey())+""); + + eventThread.setDaemon(true); // 设置为守护线程 + eventThread.start();*/ + robotUserMap.put(Integer.parseInt(entry.getKey()), robotUser); } + /*for(Map.Entry entry : robotUserMap.entrySet()) { + TPServer.me().getTimerPool().scheduleAtFixedRate(new Runnable() { + @Override + public void run() { + System.out.println(entry.getKey()+":"+entry.getValue()); + + RobotUser robotUser = entry.getValue(); + + //1、登录 + //判断是否登录 + + if(!robotUser.isLogin){ + robotUser.login(); + } + //2、链接 + //判断是否链接 + System.out.println("robotUser.isconnect"+robotUser.getisconnect()); + if(!robotUser.getisconnect()){ + robotUser.connectGame(); + }else{ + robotUser.renconnect(); + } + + //检测是否断开链接 + robotUser.checkIsConnect(); + + //4、加入房间 + if(robotUser.getStatus()==0){ + //没状态时候进入加入房间 + robotUser.joinRoom(); + } + //3、创建房间 + if(robotUser.getStatus()==ROBOTEventType.ROBOT_UNUSE){ + //没状态时候进入创建房间 + robotUser.createRoom(); + } + System.out.println("robotUser.getIntoRoomTime()"+robotUser.getIntoRoomTime()); + System.out.println("robGetTiem"+robotUser.getTime()); + if(robotUser.getIntoRoomTime()+6<=robotUser.getTime()){ + //5、退出房间 + robotUser.outoRoom(); + } + + } + }, 0, 6 ,TimeUnit.SECONDS); + }*/ + + // 2. 定时器只负责创建机器人连接 + TPServer.me().getTimerPool().scheduleAtFixedRate(new Runnable() { @Override public void run() { @@ -148,28 +248,23 @@ public class MainServer extends Extension { //检测是否断开链接 robotUser.checkIsConnect(); - //3、创建房间 + + //4、加入房间 if(robotUser.getStatus()==0){ - //没状态时候进入创建房间 + //没状态时候进入加入房间 robotUser.joinRoom(); } - + //3、创建房间 if(robotUser.getStatus()==ROBOTEventType.ROBOT_UNUSE){ //没状态时候进入创建房间 robotUser.createRoom(); } - - - - //4、加入房间 - - - //5、退出房间 - - - //6、工作 - - + System.out.println("robotUser.getIntoRoomTime()"+robotUser.getIntoRoomTime()); + System.out.println("robGetTiem"+robotUser.getTime()); + if(robotUser.getIntoRoomTime()+6<=robotUser.getTime()){ + //5、退出房间 + robotUser.outoRoom(); + } } @@ -186,7 +281,7 @@ public class MainServer extends Extension { // System.out.println("机器人返回结果: " + s); } - }, 0, 3 ,TimeUnit.SECONDS); + }, 0, 5 ,TimeUnit.SECONDS); } catch (Exception e) { // System.out.println("创建机器人连接失败" + e); @@ -197,11 +292,12 @@ public class MainServer extends Extension { // 独立的事件处理线程 private void startNetEventThread() { + Thread eventThread = new Thread(() -> { while (true) { NetManager.processEvents(); try { - Thread.sleep(2); + Thread.sleep(100); } catch (InterruptedException e) { break; } catch (Exception e) { diff --git a/robots/robotchangma/src/main/java/com/robotcm/hunan/HuNanChangSha.java b/robots/robotchangma/src/main/java/com/robotcm/hunan/HuNanChangSha.java index 4311e08..4e805ed 100644 --- a/robots/robotchangma/src/main/java/com/robotcm/hunan/HuNanChangSha.java +++ b/robots/robotchangma/src/main/java/com/robotcm/hunan/HuNanChangSha.java @@ -16,10 +16,8 @@ import com.robotcm.taurus.client.Message; import com.robotcm.taurus.client.TaurusClient; import java.sql.SQLException; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import java.util.*; +import java.util.stream.Collectors; public class HuNanChangSha { @@ -28,6 +26,14 @@ public class HuNanChangSha { public static boolean isTinChi = false; public static boolean isTinPeng = false; + private int robotid=0; + public void setRobotid(int robotid) { + this.robotid = robotid; + } + public int getRobotid() { + return robotid; + } + // private static final Logger log = Logger.getLogger(DoTest.class); @@ -39,6 +45,10 @@ public class HuNanChangSha { private List changShaCardInhand = new ArrayList<>(); + public List getChangShaCardInhand() { + return changShaCardInhand; + } + private Map chuGuoPainum = new HashMap<>(); @@ -85,9 +95,6 @@ public class HuNanChangSha { return chowGroup; } - public List getChangShaCardInhand() { - return changShaCardInhand; - } public List getChuGuoCardInhand() { return changShachuguopai; @@ -125,7 +132,7 @@ public class HuNanChangSha { * @param message 消息对象 * @return */ - public String getCard(String command, Message message, TaurusClient client, Map mapclient) { + public String getCard(String command, Message message, TaurusClient client) { if (command.equalsIgnoreCase("819")) { ITObject param = message.param; if (param == null) { @@ -139,7 +146,8 @@ public class HuNanChangSha { int drawnCard = param.getInt("card"); changShaSuanFaTest.drawnCards = drawnCard;//存储摸到的牌 changShaCardInhand.add(drawnCard); - + System.out.println("param.getInt(player)" + param.getInt("player") ); + System.out.println("摸到的牌 +++++++++ " + drawnCard); if (jedis222.hget("{robortInfo}:" + player, "circleId") != null && jedis222.hget("{robortInfo}:" + player, "pid") != null) { String circleId = jedis222.hget("{robortInfo}:" + player, "circleId"); String pid = jedis222.hget("{robortInfo}:" + player, "pid"); @@ -208,6 +216,20 @@ public class HuNanChangSha { return null; } + /** + * 同步手牌 + * @param handCard + */ + public void updateHandCard(List handCard) { + changShaCardInhand.clear(); + changShaCardInhand.addAll(handCard); + } + + public void updateOutCard(List outCard) { + changShachuguopai.clear(); + changShachuguopai.addAll(outCard); + } + public static int[][] countTiles(List cardInHand) { int[][] counts = new int[5][10]; // 类型×值 @@ -301,7 +323,7 @@ public class HuNanChangSha { // log.info("tipList" +tipList); ITObject params = TObject.newInstance(); int card = 0; - + getChangShaCardInhand(); //循环 List yupanhandcard = new ArrayList<>(); yupanhandcard.addAll(changShaCardInhand); @@ -1793,8 +1815,10 @@ public class HuNanChangSha { // 将当前出的牌添加到历史出牌列表 changShachuguopai.add(cardToOut); + System.out.println("changShachuguopai ++++ :"+changShachuguopai); // 从手牌中移除 changShaCardInhand.remove(Integer.valueOf(cardToOut)); + System.out.println("打过后的手牌 +++ " + changShaCardInhand); params.putString("session", session + "," + token); client.send("611", params, response -> { @@ -1846,7 +1870,14 @@ public class HuNanChangSha { } public static void main(String[] args) { - HuNanChangSha huNanChangSha = new HuNanChangSha(); + + String str = "[107, 202, 204, 103, 109, 101, 108, 201, 109, 105, 207, 209, 202]"; + String cleanedStr = str.substring(1, str.length() - 1); + List list = Arrays.stream(cleanedStr.split(", ")) + .map(Integer::parseInt) + .collect(Collectors.toList()); + System.out.println(list); + /*HuNanChangSha huNanChangSha = new HuNanChangSha(); ITObject params = TObject.newInstance(); TaurusClient tc = new TaurusClient("47.109.55.7", "10", TaurusClient.ConnectionProtocol.Tcp); List hands1 = new ArrayList<>(); @@ -1922,6 +1953,8 @@ public class HuNanChangSha { //huNanChangSha.chowGroup.add(205); String res = huNanChangSha.actionCard(params, tc); System.out.println(res); + + */ } diff --git a/robots/robotchangma/src/main/java/com/robotcm/hunan/JiQiRens.java b/robots/robotchangma/src/main/java/com/robotcm/hunan/JiQiRens.java index 70a6a3f..3aeece8 100644 --- a/robots/robotchangma/src/main/java/com/robotcm/hunan/JiQiRens.java +++ b/robots/robotchangma/src/main/java/com/robotcm/hunan/JiQiRens.java @@ -1057,7 +1057,7 @@ public class JiQiRens { HuNanChangSha.drawCard(command, message); } else if ("819".equalsIgnoreCase(command)) { //摸牌 - huNanChangSha.getCard(command, message,null,null); + huNanChangSha.getCard(command, message,client); } else if ("813".equalsIgnoreCase(command)) {//出牌提示 huNanChangSha.outCard(client,playerOutcardsMap,playerchisMap,playerpengsMap,playermingsMap,playerzisMap); diff --git a/robots/robotchangma/src/main/java/com/robotcm/taurus/client/business/AccountBusiness.java b/robots/robotchangma/src/main/java/com/robotcm/taurus/client/business/AccountBusiness.java index 55e6788..84f32f4 100644 --- a/robots/robotchangma/src/main/java/com/robotcm/taurus/client/business/AccountBusiness.java +++ b/robots/robotchangma/src/main/java/com/robotcm/taurus/client/business/AccountBusiness.java @@ -29,6 +29,7 @@ import java.net.URL; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.util.HashMap; +import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.Set; @@ -151,6 +152,43 @@ public class AccountBusiness extends Controller { return resData; } + + public final ITObject fastLogin(int userid) throws Exception { + Jedis jedis = Redis.use("group1_db0").getJedis(); + ITObject resData = null; + try { + Set usertoken = jedis.smembers("{user}:"+userid+"_token"); + if (usertoken.size()<=0){ + return null; + } + String token = ""; + for (String item : usertoken) { + token = item; + } + String session ="{user}:"+userid; + + + AccountBean acc_bean = AccountCache.getAccount(session); + resData = fillLoginData(session, acc_bean.id); + String idPwdBan = Redis.use("group1_db0").get(acc_bean.id+"_login_ban"); + if (StringUtil.isNotEmpty(idPwdBan)) + { + logger.error("id:"+acc_bean.id+" ban login"); + throw new WebException(ErrorCode.BAN_LOGIN); + } + resData.putString("token", token); + return resData; + }catch (Exception e){ + + }finally { + jedis.close(); + } + + return resData; + + } + + public final ITObject idPasswordLogin(int id, String password) throws Exception { logger.info("id:" + id + " login"); diff --git a/robots/robotchangma/src/main/java/com/robotcm/taurus/newRobot/lianjiejiqiren.java b/robots/robotchangma/src/main/java/com/robotcm/taurus/newRobot/lianjiejiqiren.java index 4ae9ab5..1e14359 100644 --- a/robots/robotchangma/src/main/java/com/robotcm/taurus/newRobot/lianjiejiqiren.java +++ b/robots/robotchangma/src/main/java/com/robotcm/taurus/newRobot/lianjiejiqiren.java @@ -576,7 +576,7 @@ public class lianjiejiqiren { TaurusClient taurusClient = (TaurusClient) entry.getValue(); if (client.equals(taurusClient)) { //摸牌 - huNanChangSha.getCard(command, message, taurusClient,mapclient); + huNanChangSha.getCard(command, message, taurusClient); } } diff --git a/robots/robotchangma/src/main/java/com/robotcm/taurus/robot/RobotUser.java b/robots/robotchangma/src/main/java/com/robotcm/taurus/robot/RobotUser.java index 4e7f4e3..1c21563 100644 --- a/robots/robotchangma/src/main/java/com/robotcm/taurus/robot/RobotUser.java +++ b/robots/robotchangma/src/main/java/com/robotcm/taurus/robot/RobotUser.java @@ -1,23 +1,30 @@ package com.robotcm.taurus.robot; +import com.data.cache.GroupCache; +import com.robotcm.hunan.HuNanChangSha; +import com.robotcm.taurus.client.Message; import com.robotcm.taurus.client.MessageResponse; import com.robotcm.taurus.client.SocketCode; import com.robotcm.taurus.client.TaurusClient; import com.robotcm.taurus.client.business.AccountBusiness; import com.robotcm.taurus.client.business.GroupRoomBusiness; import com.robotcm.taurus.newRobot.jiqiren; +import com.robotcm.taurus.util.ChangShaSuanFaTest; import com.robotcm.taurus.util.ROBOTEventType; +import com.robotcm.taurus.util.TinHuChi; +import com.taurus.core.entity.ITArray; import com.taurus.core.entity.ITObject; +import com.taurus.core.entity.TArray; import com.taurus.core.entity.TObject; import com.taurus.core.events.Event; import com.taurus.core.events.IEventListener; import com.taurus.core.plugin.redis.Redis; import com.taurus.core.util.ICallback; import com.taurus.core.util.Logger; +import com.taurus.core.util.StringUtil; import redis.clients.jedis.Jedis; -import java.util.Map; -import java.util.Set; +import java.util.*; public class RobotUser { @@ -25,6 +32,9 @@ public class RobotUser { public boolean isLogin = false; + + private HuNanChangSha huNanChangSha; + private final static Logger log; static { @@ -41,15 +51,45 @@ public class RobotUser { public int robotGroupid; public int robotPid; + private Map> playerOutcardsMap = new HashMap<>(); + + private Map> playerchisMap = new HashMap<>(); + + private Map> playerpengsMap = new HashMap<>(); + + private Map> playermingsMap = new HashMap<>(); + + private Map> playerzisMap = new HashMap<>(); private String token; + private int seat; + + private int outcardseat; + public int intoRoomTime; //进入房间时间戳 - public TaurusClient client = null; + public int currentRoomId;//当然房间id + + public static TaurusClient client = null; private String loginsession; + public void setSeat(int seat) { + this.seat = seat; + } + + public int getSeat() { + return seat; + } + + public void setOutcardseat(int outcardseat) { + this.outcardseat = outcardseat; + } + public int getOutcardseat() { + return outcardseat; + } + public void setisconnect(boolean isconnect) { this.isconnect = isconnect; } @@ -117,6 +157,19 @@ public class RobotUser { return gamePort; } + public void setCurrentRoomId(int currentRoomId) { + this.currentRoomId = currentRoomId; + } + public int getCurrentRoomId() { + return currentRoomId; + } + + + public void setHuNanChangSha() { + huNanChangSha = new HuNanChangSha(); + huNanChangSha.setRobotid(robotid); + } + /** * 机器人工作 */ @@ -134,16 +187,29 @@ public class RobotUser { AccountBusiness accountBusiness = null; accountBusiness = new AccountBusiness(); try { - object = accountBusiness.idPasswordLogin(robotid, getPassword()); + //先快速登录 + object = accountBusiness.fastLogin(robotid); + System.out.println("object:"+object); + if(object==null){ + object = accountBusiness.idPasswordLogin(robotid, getPassword()); + } if (object != null) { - System.out.println("login:"+object); - ITObject validate = TObject.newInstance(); - validate.putString("token", object.getString("token")); - token = object.getString("token"); - loginsession = accountBusiness.getSession(); - if (loginsession != null) { - this.isLogin = true; - setLoginsession(loginsession); + //判断是否有房间 + if(object.getTObject("account")!=null){ + ITObject validate = TObject.newInstance(); + validate.putString("token", object.getString("token")); + token = object.getString("token"); + loginsession = "{user}:"+robotid; + if (loginsession != null) { + this.isLogin = true; + setLoginsession(loginsession); + } + if(object.getTObject("account").get("roomid")!=null){ + String roomid = object.getTObject("account").get("roomid").toString(); + setCurrentRoomId(Integer.parseInt(roomid)); + connectGame(); + joinToRoomId(roomid); + } } } @@ -158,12 +224,19 @@ public class RobotUser { client = new TaurusClient(gameHost+":"+gamePort, String.valueOf(robotid), TaurusClient.ConnectionProtocol.Tcp); client.setSession(loginsession); client.connect(); + jianting(client); setisconnect(client.isConnected()); }else{ + System.out.println("reconnect"); + System.out.println("client.isConnected()"+client.isConnected()); if(client.isConnected()){ this.isconnect = true; }else{ + System.out.println("reconnect"+client.getGameID()); + client = new TaurusClient(gameHost+":"+gamePort, String.valueOf(robotid), TaurusClient.ConnectionProtocol.Tcp); + client.setSession(loginsession); client.connect(); + //jianting(client); setisconnect(client.isConnected()); } } @@ -181,6 +254,7 @@ public class RobotUser { if(client!=null){ if(client.isConnected()){ client.connect(); + //jianting(client); setisconnect(client.isConnected()); } } @@ -190,17 +264,28 @@ public class RobotUser { * 检测是否链接断开 */ public void checkIsConnect(){ + System.out.println("checkIsConnect:"+robotid+"==="+getStatus()); + System.out.println("checkIsConnectgetId:"+robotid+"==="+client.getId()); + System.out.println("checkIsConnectgetGameID:"+robotid+"==="+client.getGameID()); if(isLogin&&client!=null){ System.out.println("connectid:"+client.getId()); setisconnect(client.isConnected()); + //判断是否在房间 + } } - /** - * 退出 房间 - */ - public void logoutRoom(){ - + public void joinToRoomId(String roomid){ + try { + String room = "room:" + roomid; + ITObject roomInfos = GroupRoomBusiness.joinRoom(robotGroupid, room, loginsession, null); + log.info("房间数据数据时数据1213234453543545------" + roomInfos); + doJoinRoom(robotid); //进入房间 + ready(); //准备 + setIntoRoomTime(getTime()); + }catch(Exception e){ + e.printStackTrace(); + } } @@ -209,6 +294,75 @@ public class RobotUser { */ public void joinRoom(){ System.out.println("joinRoom:"+robotid); + //检查是否有真人的房间 + //查找真人 + Set rooms = null; + Jedis jedis11 = Redis.use("group1_db11").getJedis(); + Jedis jedis2 = Redis.use("group1_db2").getJedis(); + Jedis jedis0 = Redis.use("group1_db0").getJedis(); + try { + int min_value = 100000; + int max_value = 999999; + String grooms_key = GroupCache.genRoomsKey(robotGroupid); + rooms = jedis11.zrevrangeByScore(grooms_key, max_value, min_value); + long time = System.currentTimeMillis() / 1000; + System.out.println("rooms:"+rooms); + if (rooms.size()>0) { + for (String room : rooms) { + //limitInRoom + List room_list = jedis0.hmget(room, "fake", "status", "gpid", "id", "times", "players", "create_time","limitInRoom", "fake_existTime"); + //1、气氛桌过滤 + String fake_json = room_list.get(0); + if (fake_json != null) + { + continue; + } + + String pid = room_list.get(2); + System.out.println("pid:"+pid); + if(StringUtil.isEmpty(pid)) { + continue; + } + if(robotPid!=Integer.parseInt(pid)){ + continue; + } + String roomId = room_list.get(3); + if(StringUtil.isEmpty(roomId)) { + continue; + } + //判断是否有两个人 + ITArray players = TArray.newFromJsonData(room_list.get(5)); + if(players.size()==2) { + continue; + } + //判断另外一个用户是否是机器人 + if (players.size()==1){ + String otherp = String.valueOf(players.get(0)); + //判断是否是机器人 + Map othermap = jedis2.hgetAll("{robot}:"+otherp); + if(othermap.size()>0){ + continue; + } + } + System.out.println("roomId:"+roomId); + //加入房间 + ITObject roomInfos = GroupRoomBusiness.joinRoom(robotGroupid, room, loginsession, null); + + log.info("房间数据数据时数据1213234453543545------"+roomInfos); + doJoinRoom(robotid); //进入房间 + ready(); //准备 + setIntoRoomTime(getTime()); + + break; + } + } + + }catch (Exception e){ + + }finally { + jedis11.close(); + } + } /** @@ -223,7 +377,7 @@ public class RobotUser { Set robots = jedis2.keys(robotskey); System.out.println("robotskey:"+robotskey); System.out.println("robots:"+robots); - if(robots.size()<2){ + //if(robots.size()<2){ //创建房间 Object room = GroupRoomBusiness.matchRoom(robotGroupid, robotPid, loginsession, "Android", false); @@ -231,12 +385,14 @@ public class RobotUser { String roomKey = String.valueOf(room); ITObject roomInfos = GroupRoomBusiness.joinRoom(robotGroupid, roomKey, loginsession, null); System.out.println("roomInfos:"+roomInfos); + doJoinRoom(robotid); + String roomId = roomInfos.getString("room_id"); ready(); //doJoinRoom(robotid); - this.intoRoomTime = Integer.parseInt((System.currentTimeMillis() + "").substring(0, 10)); - jianting(this.client); - setStatus(ROBOTEventType.ROBOT_INTOROOM_READY); - } + //准备成功: + setIntoRoomTime( getTime()); + setCurrentRoomId(Integer.parseInt(roomId)); + //} }catch (Exception e) { log.error("joinRoomOrCreateRoom"+e.getMessage()); }finally { @@ -245,51 +401,159 @@ public class RobotUser { } - public void jianting(TaurusClient client){ - client.addEventListener(TaurusClient.NetClientEvent.OnEvent, new IEventListener() { - @Override - public void handleEvent(Event event) { - System.out.println("addList event:"+event); - } - }); - - client.addEventListener(TaurusClient.NetClientEvent.Connect, new IEventListener() { - @Override - public void handleEvent(Event event) { - SocketCode code = (SocketCode) event.getParameter("code"); - System.out.println("code:"+code); - if (code == SocketCode.Connect) { - - } else { - } - } - }); + public int getTime(){ + return Integer.parseInt((System.currentTimeMillis() + "").substring(0, 10)); } + + /** * 加入房间方法 * * @return */ - public String doJoinRoom(int playerId) { + public Boolean doJoinRoom(int playerId) { try { // 添加2秒延迟 - Thread.sleep(5000); + Thread.sleep(2000); ITObject params = TObject.newInstance(); params.putString("session", loginsession + "," + token); + System.out.println("doJoinRoom:"+params); + System.out.println("dojoini:"+client.getGameID()); + System.out.println("dojoini:"+client.isConnected()); - client.send("1002", params, response -> { - ITObject obj = response.messageData.param.getTObject("tableInfo"); - }); - return "ok"; + if(client.isConnected()) { + Message msg= client.send("1002", params, response -> { + System.out.println("++++++++++++++++++++++++++++=1002"); + + ITObject obj = response.messageData.param.getTObject("tableInfo"); + ITObject reloadInfo = response.messageData.param.getTObject("reloadInfo"); + if (obj!=null) { + //处理 seat + //获取机器人的seat + ITArray playerData = obj.getTArray("playerData"); + for (int i = 0; i < playerData.size(); i++) { + ITObject tms = playerData.getTObject(i); + Integer tmuserid = tms.getInt("aid"); + if(tmuserid==robotid){ + Integer seat = tms.getInt("seat"); + setSeat(seat); + } + } + System.out.println("playerData:"+playerData); + + System.out.println("obj:"+obj); + System.out.println("reloadInfo:"+reloadInfo); + if(reloadInfo!=null) { + //重连回来的 + int curren_outcard_seat = reloadInfo.getInt("curren_outcard_seat"); + if(curren_outcard_seat==getSeat()){ + //同步手牌 + ITArray hand_card = reloadInfo.getTArray("hand_card"); + ITArray info_list = reloadInfo.getTArray("info_list"); + + List hcard = new ArrayList<>(); + if(hand_card!=null) { + for (int i = 0; i < hand_card.size(); i++) { + hcard.add(hand_card.getInt(i)); + } + } + ITArray outcard_list = new TArray(); + if(info_list!=null) { + for (int i = 0; i < info_list.size(); i++) { + ITObject tms = info_list.getTObject(i); + Integer playerid = tms.getInt("playerid"); + if(playerid==robotid){ + outcard_list = tms.getTArray("outcard_list"); + } + } + } + + + if(hcard.size()>0){ + //同步手牌 + huNanChangSha.updateHandCard(hcard); + + if(outcard_list.size()>0){ + List outcards = new ArrayList<>(); + for (int i = 0; i < outcard_list.size(); i++) { + outcards.add(outcard_list.getInt(i)); + } + huNanChangSha.updateOutCard(outcards); + } + + sleepTime(2000); + huNanChangSha.outCard(client,playerOutcardsMap, playerchisMap, playerpengsMap, playermingsMap, playerzisMap); + } + } + } + } + + }); + System.out.println("dojoinRoom:"+msg.param); + + + }else{ + renconnect(); + } + + return false; } catch (InterruptedException e) { e.printStackTrace(); } - return null; + return false; } + /** + * 退出 房间 + */ + public void outoRoom() { + //判断当前状态是否在工作 + System.out.println("outoRoom:"+ROBOTEventType.ROBOT_INTOROOM_READY); + if (getStatus() == ROBOTEventType.ROBOT_INTOROOM_READY) { + //判断房间是否有人 + //room:197276 + + Jedis jedis0 = Redis.use("group1_db0").getJedis(); + try { + System.out.println("getCurrentRoomId:"+getCurrentRoomId()); + if(getCurrentRoomId()!=0){ + System.out.println("getCurrentRoomId:"+ROBOTEventType.ROBOT_INTOROOM_READY); + String roomkey="room:"+getCurrentRoomId(); + + List room_list = jedis0.hmget(roomkey, "fake", "status", "round", "id", "times", "players", "create_time", "fake_existTime"); + System.out.println("room_list:"+room_list); + String roomId = room_list.get(3); + if(room_list.get(5)==null){ + logoutroom(); + } + ITArray players = TArray.newFromJsonData(room_list.get(5)); + System.out.println("players:"+players); + if(players.size()<2){ + logoutroom(); + } + } + + }catch (Exception e){ + + }finally { + jedis0.close(); + } + } + } + + public void logoutroom(){ + ITObject params = TObject.newInstance(); + params.putString("session", loginsession + "," + token); + System.out.println("logoutroom:"+params); + if(client.isConnected()){ + client.send("1005", params,response -> { + }); + setStatus(ROBOTEventType.ROBOT_UNUSE); + } + } public String ready() { try { @@ -299,17 +563,450 @@ public class RobotUser { e.printStackTrace(); } - ITObject params = TObject.newInstance(); params.putString("session", loginsession + "," + token); - - client.send("1003", params, new ICallback() { - @Override - public void action(MessageResponse messageResponse) { - System.out.println("ready"); - System.out.println("params:"+params); - } - }); + System.out.println("ready:"+params); + if(client.isConnected()){ + client.send("1003", params, response -> { + System.out.println("1003:"+response); + }); + setStatus(ROBOTEventType.ROBOT_INTOROOM_READY); + } return null; } + + public void clientconnect(){ + client.connect(); + } + + public void jianting(TaurusClient client){ + client.addEventListener(TaurusClient.NetClientEvent.OnEvent, new IEventListener() { + @Override + public void handleEvent(Event event) { + + // 获取 msg + Message message = (Message) event.getParameter("msg"); + if (message == null) { + return; + } + //3005:重连 + + ITObject param = message.param; + //回调协议号 + String command = message.command; + System.out.println("command: " + command); + System.out.println("clientId:"+client.getId()); + System.out.println("message:"+client.getSession()); + //根据玩法id 调用不同的回调 + if (StringUtil.isNotEmpty(command)) { + System.out.println("command: "+robotid+"--------------" + command); + + //长沙麻将 机器人处理事件 + if ("811".equalsIgnoreCase(command)) { + setStatus(ROBOTEventType.ROBOT_INTOROOM_WORKING); + //初始化收手牌 +// System.out.println("初始化手牌" + session); + Jedis jedis222 = Redis.use("group1_db2").getJedis(); + String key = robotid+""; + log.info("key+++++++++++++++++++++++++++++++++++" + key); + if (jedis222.hget("{robortInfo}:" + key, "circleId") != null && jedis222.hget("{robortInfo}:" + key, "pid") != null) { + String circleId = jedis222.hget("{robortInfo}:" + key, "circleId"); + log.info("circleId +++++++++++++++++++++++++"+circleId); + String pid = jedis222.hget("{robortInfo}:" + key, "pid"); + log.info("pid +++++++++++++++++++++++++"+pid); + String getStart = "g{" + circleId + "}:play:" + pid; + if (!pid.equals("0")){ + log.info("getStart +++++++++++++++++++++++++"+getStart); + jedis222.hset(getStart, key, "2"); + } + } + jedis222.close(); + huNanChangSha.cardInHead(command, message, client); + log.info("client " + client); + } else if ("812".equalsIgnoreCase(command)) {//出牌广播 + //{"opzicards":[{"opzicards":[],"playerId":101555}],"opmingcards":[{"opmingcards":[],"playerId":101555}],"outcard_map":[{"outcards":[209,205],"playerId":101555},{"outcards":[],"playerId":112233}],"card":205,"opchicards":[{"opchicards":[105,103],"playerId":101555}],"oppengcards":[{"oppengcards":[],"playerId":101555}],"seat":1} + ITArray outcard_map = param.getTArray("outcard_map"); + ITArray opchicards = param.getTArray("opchicards"); + ITArray oppengcards = param.getTArray("oppengcards"); + ITArray opmingcards = param.getTArray("opmingcards"); + ITArray opzicards = param.getTArray("opzicards"); + + // 清空旧数据,用新数据完全覆盖 + playerOutcardsMap.clear(); + playerchisMap.clear(); + playerpengsMap.clear(); + playermingsMap.clear(); + playerzisMap.clear(); + + //出过的牌 + if (outcard_map != null) { + for (int i = 0; i < outcard_map.size(); i++) { + ITObject playerData = outcard_map.getTObject(i); + int playerId = playerData.getInt("playerId"); + ITArray outcardsArray = playerData.getTArray("outcards"); + + // 转换为List + List outcardsList = new ArrayList<>(); + for (int j = 0; j < outcardsArray.size(); j++) { + outcardsList.add(outcardsArray.getInt(j)); + } + + // 存储到Map中(覆盖旧数据) + playerOutcardsMap.put(playerId, outcardsList); + + } + } + + //吃的牌 + if (opchicards != null) { + for (int i = 0; i < opchicards.size(); i++) { + ITObject playerData = opchicards.getTObject(i); + int playerId = playerData.getInt("playerId"); + ITArray outchiArray = playerData.getTArray("opchicards"); + + List outchiList = new ArrayList<>(); + for (int j = 0; j < outchiArray.size(); j++) { + outchiList.add(outchiArray.getInt(j)); + } + playerchisMap.put(playerId, outchiList); + } + } + + //碰的牌 + if (oppengcards != null) { + for (int i = 0; i < oppengcards.size(); i++) { + ITObject playerData = oppengcards.getTObject(i); + int playerId = playerData.getInt("playerId"); + ITArray outpengArray = playerData.getTArray("oppengcards"); + + List outpengList = new ArrayList<>(); + for (int j = 0; j < outpengArray.size(); j++) { + outpengList.add(outpengArray.getInt(j)); + } + playerpengsMap.put(playerId, outpengList); + } + } + + //明杠的牌 + if (opmingcards != null) { + for (int i = 0; i < opmingcards.size(); i++) { + ITObject playerData = opmingcards.getTObject(i); + int playerId = playerData.getInt("playerId"); + ITArray outmingArray = playerData.getTArray("opmingcards"); + + List outmingList = new ArrayList<>(); + for (int j = 0; j < outmingArray.size(); j++) { + outmingList.add(outmingArray.getInt(j)); + } + playermingsMap.put(playerId, outmingList); + } + } + + //暗杠的牌 + if (opzicards != null) { + for (int i = 0; i < opzicards.size(); i++) { + ITObject playerData = opzicards.getTObject(i); + int playerId = playerData.getInt("playerId"); + ITArray outziArray = playerData.getTArray("opzicards"); + + List outziList = new ArrayList<>(); + for (int j = 0; j < outziArray.size(); j++) { + outziList.add(outziArray.getInt(j)); + } + playerzisMap.put(playerId, outziList); + } + } + + HuNanChangSha.drawCard(command, message); + } else if ("819".equalsIgnoreCase(command)) { + + huNanChangSha.getCard(command, message, client); + + } else if ("813".equalsIgnoreCase(command)) {//出牌提示 + System.out.println("进入出牌11111111111111112222222"); + System.out.println("client4444444444444444" + client); + huNanChangSha.outCard(client, playerOutcardsMap, playerchisMap, playerpengsMap, playermingsMap, playerzisMap); + } else if ("814".equalsIgnoreCase(command)) { + //吃碰杠 + huNanChangSha.actionCard(param, client); + + }else if("2002".equalsIgnoreCase(command)) { + System.out.println("comds:2002"); + + ITObject params = TObject.newInstance(); + String aid = client.getGameID(); + + String getKey = "{robortInfo}:" + aid; + Jedis jedis20 = Redis.use("group1_db2").getJedis(); + + String circleId1 = jedis20.hget(getKey, "circleId"); + String pid = jedis20.hget(getKey, "pid"); + + String key = "g{" + circleId1 + "}:play:" + pid; + + client.send("1005", params, response -> { + log.info("退出状态1---------"+response); + log.info("退出状态1getKey---------"+getKey); + log.info("退出状态1key---------"+key); + log.info("退出状态1aid---------"+aid); + jedis20.hset(getKey, "circleId", "0"); + jedis20.hset(getKey, "pid", "0"); + jedis20.hset(getKey, "room_id", "0"); + //退出修改机器人状态 + jedis20.hset(key,aid, "0"); + }); + jedis20.close(); + + }else if ("2009".equalsIgnoreCase(command)) { + log.info("斤斤计较急急急急急急急急急====="+param); +// sleepTime(3000); + + //db0 + Jedis jedis22 = Redis.use().getJedis(); + //db2 + Jedis jedis33 = Redis.use("group1_db2").getJedis(); + + Jedis jedis = Redis.use("group1_db0").getJedis(); + String aid = client.getGameID(); + + String getKey = "{robortInfo}:" + aid; + log.info("连接的id---------------:"+aid); + ITObject params = TObject.newInstance(); + + String[] playerIds2 = null; + + if (jedis33.hget(getKey, "pid") != null) { + String circleId1 = jedis33.hget(getKey, "circleId"); + String pid = jedis33.hget(getKey, "pid"); + + String key = "g{" + circleId1 + "}:play:" + pid; + if (jedis33.hget(getKey, "room_id") != null) { + String roomid = jedis33.hget(getKey, "room_id"); + String roomKey = "room:" + roomid; + Integer start = param.getInt("start"); + log.info("获取数据的key----------------"+ key); + if (start == 1){ + log.info("进入修好状态12345------------"+aid); + jedis33.hset(key, aid, "2"); + log.info("进入修好状态ttttttttttttttt------------"+jedis33.hget(key, aid)); + } + + if (jedis22.hget(roomKey, "players") != null) { + String players = jedis22.hget(roomKey, "players"); + if (!players.equals("[]")) { + players = players.substring(1, players.length() - 1); + playerIds2 = players.split(","); + if (playerIds2.length == 1) { + if (!pid.equals("0")) { + Jedis jedis20 = Redis.use("group1_db11").getJedis(); + System.out.println("进入 -------------------------"); + jedis20.hincrBy(key, "leftover_robot", 1); + jedis20.close(); + + // 获取指定field的值 + String value = jedis33.hget(key, aid); + log.info("2009-----value----"+ value); + + if (!value.equals("2")) { + +// log.info("jiqiren.count333333333333333333333333-------------"+jiqiren.count2); + + + if (jiqiren.count2 != null && jiqiren.count2.containsKey(Integer.parseInt(pid))) { + Integer currentValue = jiqiren.count2.get(Integer.parseInt(pid)); + if (currentValue > 0) { + jiqiren.count2.put(Integer.parseInt(pid), currentValue - 1); + } + } + System.out.println("jiqiren.count2000000000000-------------"+jiqiren.count2); + + if (jiqiren.count2 != null && jiqiren.count2.containsKey(Integer.parseInt(pid))) { + Integer value1 = jiqiren.count2.get(Integer.parseInt(pid)); + + // 如果找到了对应的 pid + Jedis jedis12 = Redis.use("group1_db11").getJedis(); + + String shangxianRobot = jedis12.hget(key, "shangxian_robot"); + String leftoverRobot = jedis12.hget(key, "leftover_robot"); + + if (shangxianRobot != null && leftoverRobot != null) { + if (value1 == 0) { + System.out.println("key leftover_robot " + key); + jedis12.hset(key, "leftover_robot", shangxianRobot); + } + } + jedis12.close(); + } + + sleepTime(5000); + String valueq = jedis33.hget(key, aid); + log.info("redis----状态状态111223243546----"+ valueq); + if (!valueq.equals("2")){ + client.send("1005", params, response -> { + log.info("退出状态---------"+response); + log.info("退出状态getKey---------"+getKey); + log.info("退出状态key---------"+key); + log.info("退出状态aid---------"+aid); + jedis33.hset(getKey, "circleId", "0"); + jedis33.hset(getKey, "pid", "0"); + jedis33.hset(getKey, "room_id", "0"); + //退出修改机器人状态 + jedis33.hset(key,aid, "0"); + }); + } + + } + + + + } + } + } + + } + } + + jedis33.close(); + jedis22.close(); + jedis.close(); + } + } else if ("2001".equalsIgnoreCase(command)){ + log.info("2001-------状态状态------"+param); + }else if ("817".equalsIgnoreCase(command)) {//结算 + huNanChangSha.getChangShaCardInhand().clear(); + huNanChangSha.getChuGuoCardInhand().clear(); + huNanChangSha.getpongGroup().clear(); + huNanChangSha.getchowGroup().clear(); + TinHuChi.lastTingCount = 0; + TinHuChi.isMoreThanLast = false; + ChangShaSuanFaTest.isTin = false; + ChangShaSuanFaTest.isChi = false; + ChangShaSuanFaTest.isPeng = false; + ChangShaSuanFaTest.tinCards.clear(); + Integer type = param.getInt("type"); + if (type == 1 || type == 2) { //为1为大结算 为2为解散 + Jedis jedis11s = Redis.use("group1_db11").getJedis(); + try { + //db2 + Jedis jedis21 = Redis.use("group1_db2").getJedis(); + try { + + String key = robotid+""; + if (jedis21.hget("{robortInfo}:" + key, "circleId") != null && jedis21.hget("{robortInfo}:" + key, "pid") != null) { + String circleId = jedis21.hget("{robortInfo}:" + key, "circleId"); + String pid = jedis21.hget("{robortInfo}:" + key, "pid"); + String getStart = "g{" + circleId + "}:play:" + pid; + jedis21.hset(getStart, key, "0"); + + System.out.println("jiqiren.count2886746435243211-------------"+jiqiren.count2); + + if (jiqiren.count2 != null && jiqiren.count2.containsKey(Integer.parseInt(pid))) { + Integer currentValue = jiqiren.count2.get(Integer.parseInt(pid)); + if (currentValue > 0) { + jiqiren.count2.put(Integer.parseInt(pid), currentValue - 1); + } + } + + // jedis11s.hincrBy(getStart, "leftover_robot", 1); + + jedis21.hset("{robortInfo}:" + key, "circleId", "0"); + jedis21.hset("{robortInfo}:" + key, "pid", "0"); + jedis21.hset("{robortInfo}:" + key, "room_id", "0"); + + System.out.println("jiqiren.count2-------------"+jiqiren.count2); + + if (jiqiren.count2 != null && jiqiren.count2.containsKey(Integer.parseInt(pid))) { + Integer value = jiqiren.count2.get(Integer.parseInt(pid)); + // 如果找到了对应的 pid + Jedis jedis12 = Redis.use("group1_db11").getJedis(); + + String shangxianRobot = jedis12.hget(key, "shangxian_robot"); + String leftoverRobot = jedis12.hget(key, "leftover_robot"); + + if (shangxianRobot != null && leftoverRobot != null) { + if (value == 0) { + jedis12.hset(key, "leftover_robot", shangxianRobot); + } + } + jedis12.close(); + } + + } + } catch (Exception e) { + e.printStackTrace(); + } finally { + jedis21.close(); + } + + + } catch (Exception e) { + e.printStackTrace(); + } finally { + jedis11s.close(); + } + } + + ready(); + //写定时器 + + } else if ("815".equalsIgnoreCase(command)) { //服务器通知客户端有玩家执行了操作 + //[TCP->815] data:{"playerid":101555,"card":104,"opcard":[105,103],"from_seat":2,"type":1,"opengang":false} + huNanChangSha.shanchuchuguopai(param); + + } else if ("820".equalsIgnoreCase(command)) {//换牌提示 + huNanChangSha.changePlayer(command, message); + } else if ("2008".equalsIgnoreCase(command)) { //解散房间时候恢复机器人账号可以使用 + setStatus(ROBOTEventType.ROBOT_UNUSE); + } else if ("825".equalsIgnoreCase(command)) { + ITObject params = TObject.newInstance(); + params.putInt("qi", 0); + params.putInt("id", 1); + client.send("612", params, response -> { + + }); + } else if ("822".equalsIgnoreCase(command)) { + ITObject params = TObject.newInstance(); + //params.putInt("qi", 0); + params.putInt("id", 1); + //[TCP->822] data:{"tip_list":[{"type":8,"id":1,"opcard":[],"weight":8,"card":0}],"types":[{"type":21,"value":1}]} + //板胡Event [TCP->823] data:{"type":8,"seat":1,"data":[{"opcard":[204,204,204,108,108,108],"type":21,"value":1}]} + + client.send("612", params, response -> { + + }); + } else if ("835".equalsIgnoreCase(command)) { //听牌天听 + ITObject params = TObject.newInstance(); + params.putInt("qi", 0); + params.putInt("id", 1); + client.send("612", params, response -> { + + }); + + } + //END 长沙麻将 + } + } + + }); + + client.addEventListener(TaurusClient.NetClientEvent.Connect, new IEventListener() { + @Override + public void handleEvent(Event event) { + SocketCode code = (SocketCode) event.getParameter("code"); + if (code == SocketCode.Disconnect) { + client.connect(); + } else { + } + } + }); + } + + public static void sleepTime(int time) { + try { + // 添加延迟 + Thread.sleep(time); + } catch (InterruptedException e) { + e.printStackTrace(); + } + } } diff --git a/robots/robotchangma/src/main/java/com/robotcm/taurus/util/Paixing.java b/robots/robotchangma/src/main/java/com/robotcm/taurus/util/Paixing.java index aecafe6..f9d446d 100644 --- a/robots/robotchangma/src/main/java/com/robotcm/taurus/util/Paixing.java +++ b/robots/robotchangma/src/main/java/com/robotcm/taurus/util/Paixing.java @@ -65,6 +65,9 @@ public class Paixing { return false; } if(drawCard == 0)return true; + if(cardInhand.size() == 0) { + return false; + } if (cardInhand.get(0) != drawCard) return false; return true; diff --git a/robots/robotchangma/src/main/webapp/logs/web_main.log b/robots/robotchangma/src/main/webapp/logs/web_main.log index 1d9d8d1..4af7f32 100644 --- a/robots/robotchangma/src/main/webapp/logs/web_main.log +++ b/robots/robotchangma/src/main/webapp/logs/web_main.log @@ -1,10985 +1,1388 @@ -02 二月 2026 | 03:35:52,640 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 03:35:52,710 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 03:35:57,272 | INFO | pool-3-thread-1 | taurus.newRobot.AddRoomRobot | | 靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠{364881=0, 181048=0, 972225=0, 528242=0, 907904=0} -02 二月 2026 | 03:35:57,273 | INFO | pool-3-thread-1 | taurus.newRobot.AddRoomRobot | | iiiiiiiiiiiiiiiiiiiiiiiiiiiiiitrue -02 二月 2026 | 03:35:59,369 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] -02 二月 2026 | 03:36:00,350 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] -02 二月 2026 | 03:36:01,119 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] -02 二月 2026 | 03:36:02,375 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] -02 二月 2026 | 03:36:03,212 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] -02 二月 2026 | 04:53:50,212 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 04:53:50,283 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 04:54:26,768 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 04:54:26,819 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:11:33,388 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:11:33,436 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:12:10,510 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:12:10,558 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:18:14,217 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:18:14,263 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:20:23,954 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:20:24,003 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:20:41,202 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:27:01,773 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:27:01,818 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:37:41,124 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:37:41,174 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:49:42,001 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:49:42,049 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:52:32,597 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:52:32,642 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:53:09,051 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:53:09,100 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:54:01,991 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:54:02,038 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:58:54,763 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:58:54,811 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 05:59:58,796 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 05:59:58,841 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:07:58,505 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:07:58,551 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:08:18,701 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:08:18,748 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:13:13,795 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:13:13,848 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:13:14,148 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:13:14,378 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:13:20,647 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:13:20,693 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:13:23,214 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:13:23,261 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:17:00,361 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:17:00,406 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:17:00,684 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:17:00,907 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:17:05,452 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:17:05,494 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:17:08,217 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:17:08,260 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:17:10,969 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:17:11,012 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:17:13,631 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:17:13,672 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:17,480 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:27:17,525 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:27:17,810 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:27:18,026 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:22,630 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:27:22,678 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:25,536 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:27:25,584 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:28,436 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:27:28,484 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:31,332 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:27:31,378 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:46,552 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:27:46,595 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:27:46,873 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:27:47,098 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:51,599 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:27:51,643 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:54,368 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:27:54,410 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:57,199 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:27:57,241 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:27:59,955 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:27:59,997 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:28:29,292 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:28:29,337 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:28:29,619 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:28:29,840 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:28:34,514 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:28:34,557 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:28:37,305 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:28:37,347 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:28:40,085 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:28:40,127 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:28:42,879 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:28:42,920 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:02,290 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:30:02,340 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:30:02,610 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:30:02,826 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:07,263 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:30:07,300 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:10,049 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:30:10,086 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:12,813 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:30:12,848 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:15,579 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:30:15,616 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:42,160 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:30:42,205 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:30:42,460 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:30:42,682 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:47,449 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:30:47,491 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:47,495 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:50,350 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:30:50,393 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:50,396 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:53,204 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:30:53,248 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:53,250 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:56,000 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:30:56,039 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:56,043 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:30:58,977 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,980 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,981 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,981 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,984 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,984 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,985 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,985 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,986 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,987 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,991 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,991 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,992 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,996 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,996 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:30:58,999 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:00,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:00,507 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:00,507 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:00,507 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:00,514 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:03,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:03,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:03,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:03,504 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:03,504 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:03,604 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:03,608 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:06,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:06,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:06,501 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:06,504 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:06,504 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:09,500 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:09,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:09,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:09,505 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:09,511 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:12,497 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:12,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:12,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:12,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:12,509 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:13,606 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:13,606 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:13,607 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:13,609 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:13,609 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:13,609 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:15,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:15,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:15,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:15,509 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:15,511 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:18,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:18,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:18,502 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:18,505 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:18,505 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:21,500 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:21,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:21,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:21,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:21,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:31:23,608 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,609 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,610 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,610 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,610 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,612 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,612 | ERROR | Thread-136 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,613 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,613 | ERROR | Thread-139 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,613 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,613 | ERROR | Thread-164 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,613 | ERROR | Thread-167 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,613 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,613 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,613 | ERROR | Thread-184 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,614 | ERROR | Thread-140 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,614 | ERROR | Thread-166 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,614 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,614 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,615 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,615 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,615 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,615 | ERROR | Thread-205 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,615 | ERROR | Thread-142 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,615 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,615 | ERROR | Thread-204 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,617 | ERROR | Thread-133 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,617 | ERROR | Thread-144 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,616 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,616 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,617 | ERROR | Thread-135 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,616 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,618 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,617 | ERROR | Thread-185 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,617 | ERROR | Thread-186 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,617 | ERROR | Thread-141 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,617 | ERROR | Thread-134 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,617 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,618 | ERROR | Thread-206 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,618 | ERROR | Thread-188 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,619 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,619 | ERROR | Thread-138 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,619 | ERROR | Thread-145 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,619 | ERROR | Thread-207 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,619 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,620 | ERROR | Thread-137 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,620 | ERROR | Thread-187 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,620 | ERROR | Thread-208 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,620 | ERROR | Thread-165 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,621 | ERROR | Thread-168 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,622 | ERROR | Thread-146 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,622 | ERROR | Thread-143 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,622 | ERROR | Thread-147 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,622 | ERROR | Thread-148 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:33:25,409 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:33:25,449 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:33:25,703 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:33:25,912 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:33:30,261 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:10 -02 二月 2026 | 06:33:30,351 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:33:30,392 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:30,392 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:33:33,041 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:10 -02 二月 2026 | 06:33:33,124 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:33:33,165 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:33:33,166 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:35,798 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:10 -02 二月 2026 | 06:33:35,879 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:33:35,919 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:33:35,923 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:38,558 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:10 -02 二月 2026 | 06:33:38,638 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:33:38,681 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:33:38,683 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,331 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:10 -02 二月 2026 | 06:33:41,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,453 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,455 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,460 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,460 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,460 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,462 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,463 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,463 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,464 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,464 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,468 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:41,468 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:43,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:43,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:43,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:43,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:43,751 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:46,742 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:46,745 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:46,745 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:46,750 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:46,750 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:49,740 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:49,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:49,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:49,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:49,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:52,741 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:52,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:52,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:52,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:52,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:53,654 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:33:53,655 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:33:53,656 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:33:53,656 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:33:53,656 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:33:53,659 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:33:55,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:55,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:55,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:55,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:55,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:58,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:58,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:58,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:58,745 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:33:58,748 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:01,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:01,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:01,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:01,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:01,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:03,406 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,407 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,408 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,409 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,409 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,409 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,409 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,410 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,411 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,411 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,413 | ERROR | Thread-139 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,413 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,415 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,415 | ERROR | Thread-183 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,415 | ERROR | Thread-184 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,417 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,417 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,417 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,417 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,417 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,417 | ERROR | Thread-136 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,419 | ERROR | Thread-186 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,419 | ERROR | Thread-143 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,419 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,420 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,435 | ERROR | Thread-141 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,435 | ERROR | Thread-146 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,435 | ERROR | Thread-166 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,435 | ERROR | Thread-187 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,435 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,436 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,436 | ERROR | Thread-163 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-134 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-138 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,437 | ERROR | Thread-144 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-185 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-135 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-140 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-133 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-142 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-164 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-147 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-137 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,438 | ERROR | Thread-167 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,437 | ERROR | Thread-165 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,436 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,438 | ERROR | Thread-145 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:03,438 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,438 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:04,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:04,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:04,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:04,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:04,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:07,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:07,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:07,748 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:07,752 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:07,755 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:10,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:10,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:10,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:10,750 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:10,753 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:13,412 | ERROR | Thread-203 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,412 | ERROR | Thread-243 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,413 | ERROR | Thread-226 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,413 | ERROR | Thread-224 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,414 | ERROR | Thread-223 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,420 | ERROR | Thread-227 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,418 | ERROR | Thread-247 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,418 | ERROR | Thread-245 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,418 | ERROR | Thread-206 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,416 | ERROR | Thread-205 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,416 | ERROR | Thread-246 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,416 | ERROR | Thread-225 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,416 | ERROR | Thread-207 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,416 | ERROR | Thread-204 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,416 | ERROR | Thread-244 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:34:13,416 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,427 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,427 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,427 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,427 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:34:13,740 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:13,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:13,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:13,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:13,752 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:34,368 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:34:34,408 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:34:34,685 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:34:34,897 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:34:39,188 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:11 -02 二月 2026 | 06:34:39,277 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:34:39,318 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:34:39,322 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:41,835 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:11 -02 二月 2026 | 06:34:41,917 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:34:41,959 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:41,959 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:34:44,485 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:11 -02 二月 2026 | 06:34:44,568 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:34:44,609 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:34:44,614 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:47,136 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:11 -02 二月 2026 | 06:34:47,216 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:34:47,256 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:47,256 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:34:49,943 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:11 -02 二月 2026 | 06:34:50,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,117 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,121 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,128 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,128 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,128 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,131 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,131 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,131 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,134 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,134 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,137 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,183 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:50,183 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:51,106 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:51,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:51,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:51,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:51,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:51,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:52,727 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:52,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:53,723 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:53,731 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:53,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:55,726 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:55,732 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:56,726 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:56,728 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:56,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:58,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:58,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:58,733 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:59,723 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:34:59,726 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:01,725 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:02,788 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:02,788 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:02,790 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:02,799 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:03,429 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:35:03,429 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:35:03,429 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:35:03,429 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:35:03,432 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:35:03,432 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:35:03,433 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:35:03,433 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:35:04,731 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:04,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:04,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:04,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:35:04,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:36:28,923 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:36:28,964 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:36:29,210 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:36:29,417 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:36:33,796 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:12 -02 二月 2026 | 06:37:13,852 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:37:13,892 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:37:14,193 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:37:14,435 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:37:18,939 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:13 -02 二月 2026 | 06:38:06,057 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:38:06,100 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:38:06,371 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:38:06,602 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:38:10,646 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:14 -02 二月 2026 | 06:38:39,535 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:38:39,582 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:38:39,884 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:38:40,107 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:38:44,434 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:15 -02 二月 2026 | 06:39:51,285 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:39:51,326 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:39:51,594 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:39:51,805 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:39:56,274 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:16 -02 二月 2026 | 06:39:56,360 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:39:56,401 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:39:56,406 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:39:58,893 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:12 -02 二月 2026 | 06:39:58,975 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:39:59,017 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:39:59,023 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:40:01,507 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:12 -02 二月 2026 | 06:40:01,588 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:40:01,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:40:01,628 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:40:04,113 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:12 -02 二月 2026 | 06:40:04,193 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:40:04,232 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:40:04,233 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:40:06,721 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:12 -02 二月 2026 | 06:40:06,841 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:40:13,516 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:40:13,519 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:40:23,518 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:40:23,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:40:23,521 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:40:23,522 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:40:23,523 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:40:23,523 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:40:23,524 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:40:23,526 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:42:24,211 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:42:24,254 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:42:24,505 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:42:24,718 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:42:30,104 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:42:30,143 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:42:30,412 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:42:30,625 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:42:35,263 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:17 -02 二月 2026 | 06:42:35,352 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:42:35,393 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:42:35,396 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:42:37,879 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:13 -02 二月 2026 | 06:42:37,963 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:42:38,004 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:42:38,004 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:42:40,523 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:13 -02 二月 2026 | 06:42:40,605 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:42:40,644 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:42:40,646 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:42:43,161 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:13 -02 二月 2026 | 06:42:43,242 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:42:43,283 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:42:43,286 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:42:45,800 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:13 -02 二月 2026 | 06:42:45,928 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:42:53,560 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:42:53,564 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:43:03,560 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:43:03,560 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:43:03,562 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:43:03,562 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:43:03,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:43:03,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:43:03,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:43:03,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:44:26,630 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:44:26,671 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:44:26,951 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:44:27,167 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:44:31,193 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:18 -02 二月 2026 | 06:44:31,275 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:44:31,313 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:44:31,316 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:44:33,752 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:14 -02 二月 2026 | 06:44:33,828 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:44:33,865 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:44:33,873 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:44:36,294 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:14 -02 二月 2026 | 06:44:36,367 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:44:36,404 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:44:36,415 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:44:38,847 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:14 -02 二月 2026 | 06:44:38,920 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:44:38,956 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:44:38,959 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:44:41,401 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:14 -02 二月 2026 | 06:44:41,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:45:44,654 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:45:44,694 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:45:44,990 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:45:45,205 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:45:49,456 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:19 -02 二月 2026 | 06:45:49,533 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:45:49,569 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:45:49,581 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:45:52,032 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:15 -02 二月 2026 | 06:45:52,105 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:45:52,142 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:45:52,144 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:45:54,613 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:15 -02 二月 2026 | 06:45:54,684 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:45:54,719 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:45:54,733 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:45:57,450 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:15 -02 二月 2026 | 06:45:57,520 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:45:57,554 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:45:57,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:46:00,046 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:15 -02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:46:00,164 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:46:13,614 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:46:13,616 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:46:13,618 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:46:13,618 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:46:13,619 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:46:13,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:46:13,621 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:46:13,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:46:23,619 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:46:23,621 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:49:10,555 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:49:10,596 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:49:10,874 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:49:11,087 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:49:15,445 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:20 -02 二月 2026 | 06:51:55,373 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:51:55,413 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:51:55,674 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:51:55,894 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:52:00,661 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:21 -02 二月 2026 | 06:52:00,750 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:52:00,791 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:52:00,800 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:52:03,467 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:16 -02 二月 2026 | 06:52:03,545 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:52:03,585 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:52:03,590 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:52:06,201 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:16 -02 二月 2026 | 06:52:06,278 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:52:06,316 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:52:06,323 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:52:08,923 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:16 -02 二月 2026 | 06:52:08,999 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:52:09,038 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:52:09,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:52:11,661 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:16 -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:11,775 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:52:13,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:13,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:13,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:13,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:23,466 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:52:23,467 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:52:23,468 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:52:23,470 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:52:23,470 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:52:23,470 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:52:25,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:25,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:25,721 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:53:43,156 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:53:43,196 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:53:43,448 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:53:43,666 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:53:48,393 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:22 -02 二月 2026 | 06:53:48,468 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:53:48,502 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:53:48,513 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:53:51,125 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:17 -02 二月 2026 | 06:53:51,193 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:53:51,228 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:53:51,239 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:53:53,839 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:17 -02 二月 2026 | 06:53:53,906 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:53:53,939 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:53:53,947 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:53:56,553 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:17 -02 二月 2026 | 06:53:56,621 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:53:56,654 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:53:56,667 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:53:59,267 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:17 -02 二月 2026 | 06:53:59,334 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:53:59,335 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:53:59,335 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:53:59,335 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:53:59,335 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:53:59,379 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:54:13,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:13,497 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:13,498 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:13,498 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:13,501 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:54:13,501 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:54:13,501 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:54:13,502 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:13,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:54:19,449 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:19,449 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:22,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:22,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:22,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:22,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:23,504 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:23,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:54:25,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:25,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:25,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:25,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:33,502 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:33,502 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:33,505 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:54:34,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:34,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:34,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:43,506 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:43,509 | ERROR | Thread-55 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:43,512 | ERROR | Thread-57 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:46,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:46,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:53,509 | ERROR | Thread-60 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:53,510 | ERROR | Thread-61 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:54:55,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:55,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:54:55,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:01,853 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:55:01,896 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:55:02,153 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:55:02,356 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:55:06,942 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:23 -02 二月 2026 | 06:55:07,030 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:55:07,070 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:55:07,074 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:55:09,868 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:18 -02 二月 2026 | 06:55:09,951 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:55:09,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:55:09,993 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:55:12,779 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:18 -02 二月 2026 | 06:55:12,860 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:55:12,901 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:55:12,904 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:55:15,677 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:18 -02 二月 2026 | 06:55:15,758 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:55:15,799 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:55:15,801 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:55:18,576 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:18 -02 二月 2026 | 06:55:18,657 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,657 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:18,704 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:55:20,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:20,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:20,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:20,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:23,522 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:55:23,529 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:55:26,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:26,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:26,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:26,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:29,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:29,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:29,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:29,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:32,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:32,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:32,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:32,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:33,519 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:55:33,519 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:55:33,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:55:33,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:55:33,524 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:55:33,525 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:55:35,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:35,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:38,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:38,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:38,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:41,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:41,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:41,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:41,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:43,525 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:55:43,526 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:55:44,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:44,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:44,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:44,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:53,524 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:55:53,527 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:55:53,532 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:55:56,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:56,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:56,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:03,527 | ERROR | Thread-55 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:56:03,528 | ERROR | Thread-56 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:56:03,535 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:56:05,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:05,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:13,532 | ERROR | Thread-61 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:56:13,534 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:56:14,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:14,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:14,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 06:56:25,859 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:56:25,898 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:56:26,187 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:56:26,404 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:56:30,854 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:24 -02 二月 2026 | 06:56:30,936 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:56:30,974 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:56:30,977 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:33,502 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:19 -02 二月 2026 | 06:56:33,579 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:56:33,617 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:56:33,628 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:36,437 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:19 -02 二月 2026 | 06:56:36,512 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:56:36,548 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:56:36,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:39,102 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:19 -02 二月 2026 | 06:56:39,176 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:56:39,213 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:56:39,222 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,726 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:19 -02 二月 2026 | 06:56:41,840 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,843 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,844 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,844 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,844 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,847 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,847 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,847 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,847 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,849 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,849 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,849 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,849 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,853 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,853 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,854 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,854 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,854 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,855 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,855 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,855 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:41,858 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:47,227 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:47,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:47,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:47,236 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:47,241 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:53,224 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:53,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:53,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:53,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:53,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:53,544 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:56:53,546 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:56:53,545 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:56:53,547 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:56:53,548 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:56:53,550 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:56:59,231 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:59,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:59,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:59,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:56:59,240 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:03,544 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,545 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,545 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,545 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,546 | ERROR | Thread-148 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,547 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,547 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,548 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,546 | ERROR | Thread-117 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,548 | ERROR | Thread-150 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,547 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,548 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,548 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,549 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,549 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,549 | ERROR | Thread-149 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,549 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,550 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,550 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,551 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,551 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,551 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,551 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,552 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,552 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,553 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,554 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,554 | ERROR | Thread-151 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,555 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,555 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,555 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,555 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,556 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,556 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:03,558 | ERROR | Thread-152 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:03,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:05,225 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:05,225 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:05,231 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:05,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:05,238 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:11,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:11,235 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:11,235 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:11,240 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:11,242 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:13,549 | ERROR | Thread-168 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:13,549 | ERROR | Thread-171 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:13,550 | ERROR | Thread-172 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:13,550 | ERROR | Thread-169 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:13,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:13,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:13,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:13,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:13,557 | ERROR | Thread-170 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:13,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:17,228 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:17,228 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:17,231 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:17,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:17,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:23,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:23,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:23,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:23,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:23,236 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:23,552 | ERROR | Thread-188 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,552 | ERROR | Thread-209 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,552 | ERROR | Thread-189 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:23,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:23,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:23,553 | ERROR | Thread-208 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,553 | ERROR | Thread-210 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,555 | ERROR | Thread-190 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:23,556 | ERROR | Thread-211 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:23,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:23,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:23,558 | ERROR | Thread-212 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,558 | ERROR | Thread-192 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:23,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:23,560 | ERROR | Thread-191 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:57:23,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:57:29,229 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:29,231 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:29,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:29,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:29,237 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:36,728 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:57:36,769 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:57:37,077 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:57:37,313 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:57:41,978 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:25 -02 二月 2026 | 06:57:42,061 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:57:42,099 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:57:42,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:45,000 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:20 -02 二月 2026 | 06:57:45,078 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:57:45,116 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:57:45,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:48,007 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:20 -02 二月 2026 | 06:57:48,081 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:57:48,119 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:57:48,127 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:51,004 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:20 -02 二月 2026 | 06:57:51,079 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:57:51,116 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:57:51,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:53,987 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:20 -02 二月 2026 | 06:57:54,103 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,105 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,105 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,105 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,105 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,106 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,106 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,106 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,110 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,110 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,110 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,110 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,111 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,111 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,111 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:54,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:58,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:58,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:58,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:58,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:57:58,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:03,566 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:03,569 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:03,572 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:03,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:04,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:04,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:04,120 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:04,123 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:04,126 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:10,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:10,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:10,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:10,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:10,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:13,566 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,566 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,566 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,567 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,567 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,568 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,568 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,568 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,569 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,569 | ERROR | Thread-117 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,569 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,569 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,569 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,570 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,570 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,570 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,571 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,572 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,572 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,573 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,574 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,574 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,575 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,575 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,576 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,576 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,577 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,577 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,577 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:16,120 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:16,120 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:16,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:16,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:16,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:22,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:22,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:22,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:22,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:22,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:23,570 | ERROR | Thread-169 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,570 | ERROR | Thread-171 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,571 | ERROR | Thread-148 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,572 | ERROR | Thread-149 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,573 | ERROR | Thread-150 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,573 | ERROR | Thread-151 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:23,574 | ERROR | Thread-168 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,575 | ERROR | Thread-170 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,575 | ERROR | Thread-152 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:23,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:23,579 | ERROR | Thread-172 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:23,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:23,591 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:28,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:28,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:28,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:28,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:28,128 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:33,573 | ERROR | Thread-188 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,574 | ERROR | Thread-191 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,574 | ERROR | Thread-211 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,575 | ERROR | Thread-189 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,575 | ERROR | Thread-208 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,575 | ERROR | Thread-190 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:33,576 | ERROR | Thread-210 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,577 | ERROR | Thread-209 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,577 | ERROR | Thread-192 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:33,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:33,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:33,580 | ERROR | Thread-212 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 06:58:33,581 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 06:58:34,121 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:34,121 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:34,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:34,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:58:34,129 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:33,329 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 06:59:33,369 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 06:59:33,631 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 06:59:33,851 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:59:38,103 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:26 -02 二月 2026 | 06:59:38,188 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 06:59:38,229 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:59:38,232 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:40,593 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:21 -02 二月 2026 | 06:59:40,673 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 06:59:40,713 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:59:40,720 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:43,074 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:21 -02 二月 2026 | 06:59:43,153 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 06:59:43,191 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:59:43,195 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:45,566 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:21 -02 二月 2026 | 06:59:45,645 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 06:59:45,685 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 06:59:45,689 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,056 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:21 -02 二月 2026 | 06:59:48,176 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,177 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,182 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,190 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,190 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,190 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:48,190 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:51,669 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:51,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:51,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:51,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:51,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:57,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:57,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:57,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:57,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 06:59:57,679 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:03,600 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:00:03,600 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:00:03,602 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:00:03,604 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:00:03,604 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:00:03,604 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:00:03,604 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:00:03,607 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:00:03,670 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:03,670 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:03,673 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:03,675 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:03,680 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:09,669 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:09,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:09,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:09,677 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:09,677 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:46,435 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 07:00:46,478 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 07:00:46,712 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 07:00:46,930 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:00:51,165 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:27 -02 二月 2026 | 07:00:51,242 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 07:00:51,278 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:00:51,287 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:53,800 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:22 -02 二月 2026 | 07:00:53,874 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 07:00:53,910 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:00:53,920 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:56,441 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:22 -02 二月 2026 | 07:00:56,511 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 07:00:56,546 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:00:56,550 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:00:59,065 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:22 -02 二月 2026 | 07:00:59,135 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 07:00:59,169 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:00:59,178 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,689 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:22 -02 二月 2026 | 07:01:01,797 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,798 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,801 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,802 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,814 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,814 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:01,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:02,814 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:07,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:07,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:07,761 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:07,761 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:07,766 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:13,622 | ERROR | Thread-38 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:13,624 | ERROR | Thread-34 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:13,624 | ERROR | Thread-30 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:13,625 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:13,625 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:13,625 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:13,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:13,752 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:13,755 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:13,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:13,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:19,756 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:19,759 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:19,762 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:19,765 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:19,765 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:23,621 | ERROR | Thread-110 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,621 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,622 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,622 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,623 | ERROR | Thread-109 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,623 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,625 | ERROR | Thread-117 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,625 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,626 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,627 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,627 | ERROR | Thread-42 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,627 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,628 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,628 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,629 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,629 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,630 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,630 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,630 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,632 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,632 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,633 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:23,633 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:01:23,636 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:01:25,753 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:25,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:25,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:25,761 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:25,763 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:39,950 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 07:01:39,992 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 07:01:40,274 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 07:01:40,493 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:01:45,283 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:28 -02 二月 2026 | 07:01:45,363 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 07:01:45,404 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:45,404 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:01:48,147 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:23 -02 二月 2026 | 07:01:48,223 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 07:01:48,261 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:48,261 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:01:51,001 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:23 -02 二月 2026 | 07:01:51,075 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 07:01:51,112 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:01:51,117 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:53,849 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:23 -02 二月 2026 | 07:01:53,922 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 07:01:53,958 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:01:53,962 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,696 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:23 -02 二月 2026 | 07:01:56,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,812 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,813 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,815 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,819 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,819 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,819 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,820 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,823 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,823 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:01:56,826 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:01,311 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:01,313 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:01,319 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:01,319 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:01,326 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:03,637 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:02:03,641 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:02:07,311 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:07,314 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:07,317 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:07,317 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:07,321 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:16,086 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 07:02:16,126 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 07:02:16,356 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 07:02:16,557 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:02:20,614 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:29 -02 二月 2026 | 07:02:20,702 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 07:02:20,744 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:02:20,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:23,240 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:24 -02 二月 2026 | 07:02:23,323 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 07:02:23,364 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:02:23,376 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:25,849 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:24 -02 二月 2026 | 07:02:25,929 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 07:02:25,969 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:25,971 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:02:28,444 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:24 -02 二月 2026 | 07:02:28,524 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 07:02:28,566 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:02:28,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,039 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:24 -02 二月 2026 | 07:02:31,162 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,162 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,163 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,163 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,163 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,167 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,167 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,167 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,167 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,168 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,168 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,168 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,173 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:31,176 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:34,396 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:34,399 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:34,402 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:34,405 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:34,409 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:40,395 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:40,398 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:40,401 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:40,401 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:02:40,401 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:04:59,663 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 07:04:59,702 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 07:05:00,002 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 07:05:00,223 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:05:04,401 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:30 -02 二月 2026 | 07:05:04,488 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 07:05:04,528 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:05:04,536 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:07,049 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:25 -02 二月 2026 | 07:05:07,132 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 07:05:07,174 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:05:07,176 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:09,687 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:25 -02 二月 2026 | 07:05:09,768 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 07:05:09,808 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:05:09,812 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:12,325 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:25 -02 二月 2026 | 07:05:12,405 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 07:05:12,445 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:05:12,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:14,969 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:25 -02 二月 2026 | 07:05:15,091 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,092 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,092 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,092 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,095 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,095 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,099 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,099 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,101 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,101 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,101 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,101 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,102 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,102 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:15,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:21,043 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:21,043 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:21,046 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:21,046 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:21,049 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:23,445 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:23,445 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:23,448 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:23,448 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:27,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:27,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:27,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:27,048 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:27,048 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:33,042 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:33,044 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:33,044 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:33,047 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:33,050 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:05:33,442 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,442 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,443 | ERROR | Thread-117 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,444 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,444 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,444 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,444 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,445 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,445 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,445 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,445 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,445 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,446 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,446 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,447 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,447 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,448 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,448 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,448 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,449 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,449 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,449 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,449 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,449 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,450 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,451 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,451 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,452 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,452 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,453 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,453 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,453 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:06:13,312 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 07:06:13,358 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 07:06:13,617 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 07:06:13,829 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:06:18,063 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:31 -02 二月 2026 | 07:06:18,152 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 07:06:18,195 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:06:18,197 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:06:20,845 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:26 -02 二月 2026 | 07:06:20,929 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 07:06:20,970 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:06:20,974 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:06:26,934 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 07:06:26,974 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 07:06:27,268 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 07:06:27,505 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:06:31,829 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:32 -02 二月 2026 | 07:06:31,920 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 07:06:31,961 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:06:31,963 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:06:34,494 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:27 -02 二月 2026 | 07:06:34,575 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 07:06:34,613 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:06:34,619 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:06:37,147 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:26 -02 二月 2026 | 07:06:37,227 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 07:06:37,269 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:06:37,271 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:06:39,782 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:26 -02 二月 2026 | 07:06:39,862 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 07:06:39,905 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:06:39,907 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:06:42,425 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:26 -02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:42,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:06:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:53,465 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:06:53,465 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:06:53,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:06:53,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:06:53,470 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:06:53,473 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:06:54,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:54,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:06:57,311 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:03,468 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:03,476 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:06,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:06,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:06,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:13,472 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:13,472 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:13,476 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:15,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:15,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:23,476 | ERROR | Thread-57 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:23,479 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:24,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:24,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:24,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:33,477 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:33,479 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:33,482 | ERROR | Thread-64 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:36,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:36,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:43,483 | ERROR | Thread-67 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:43,485 | ERROR | Thread-68 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:53,486 | ERROR | Thread-73 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:53,486 | ERROR | Thread-74 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:53,489 | ERROR | Thread-75 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:07:54,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:54,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:08:03,487 | ERROR | Thread-78 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:08:03,492 | ERROR | Thread-79 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:11:28,282 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 07:11:28,320 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 07:11:28,582 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 07:11:28,796 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:11:33,336 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:33 -02 二月 2026 | 07:11:33,420 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 07:11:33,460 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:11:33,465 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:11:36,204 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:28 -02 二月 2026 | 07:11:36,284 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 07:11:36,325 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:11:36,332 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:11:39,066 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:27 -02 二月 2026 | 07:11:39,143 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 07:11:39,183 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:11:39,189 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:11:41,923 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:27 -02 二月 2026 | 07:11:42,001 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 07:11:42,041 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:11:42,044 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:11:44,784 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:27 -02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:44,911 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:11:46,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:46,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:46,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:46,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:53,552 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:11:53,555 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:11:53,557 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:11:53,557 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:11:55,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:55,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:55,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:58,580 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:58,580 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:11:58,580 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:01,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:01,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:01,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:01,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:03,553 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:12:03,555 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:12:03,555 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:12:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:12:03,558 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:12:03,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:12:04,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:04,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:07,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:07,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:07,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:23,560 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:12:23,561 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:12:23,562 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:12:23,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:12:25,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:25,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:32:56,110 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 07:32:56,151 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 07:32:56,430 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 07:32:56,648 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:33:00,783 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:34 -02 二月 2026 | 07:33:00,901 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:33:00,990 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 07:33:01,026 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:42:40,304 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 07:42:40,343 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 07:42:40,608 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 07:42:40,817 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:42:44,666 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:35 -02 二月 2026 | 07:42:44,815 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:42:45,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:42:46,651 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 07:42:46,698 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:42:49,016 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:29 -02 二月 2026 | 07:42:49,152 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:42:49,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:42:50,540 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 07:42:50,587 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:42:52,903 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:28 -02 二月 2026 | 07:42:53,037 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:42:53,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:42:54,420 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 07:42:54,468 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:42:56,777 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:28 -02 二月 2026 | 07:42:56,915 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:42:57,474 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:42:58,307 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 07:42:58,354 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 07:43:00,685 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:28 -02 二月 2026 | 07:43:00,821 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 07:43:01,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:02,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:03,571 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:43:03,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:43:04,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:05,665 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:07,091 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:08,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:09,943 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:11,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:12,190 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:43:12,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:13,575 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:43:13,575 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:43:13,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:43:13,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:43:13,578 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 07:43:13,580 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 07:43:14,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:15,043 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 07:43:15,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:17,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:18,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 07:43:19,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 16:50:32,844 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 16:50:32,885 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 16:50:33,199 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 16:50:33,415 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 16:50:37,917 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:36 -02 二月 2026 | 16:50:38,048 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 16:50:40,705 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:50:40,776 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 16:50:40,846 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 16:50:43,551 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:30 -02 二月 2026 | 16:50:43,672 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 16:50:45,509 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:50:45,549 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 16:50:45,588 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 16:50:48,615 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:29 -02 二月 2026 | 16:50:48,745 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 16:50:50,575 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:50:50,614 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 16:50:50,654 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 16:50:53,367 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:29 -02 二月 2026 | 16:50:53,498 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 16:50:54,093 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 16:50:54,097 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 16:50:55,331 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:50:55,371 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 16:50:55,411 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 16:50:58,127 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:29 -02 二月 2026 | 16:50:58,246 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 16:51:00,084 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:01,968 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:04,014 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:04,096 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 16:51:04,098 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 16:51:05,827 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:07,635 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:09,448 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:09,487 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 16:51:11,260 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:13,100 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:14,101 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 16:51:14,102 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 16:51:14,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 16:51:14,107 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 16:51:14,905 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:16,723 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:16,763 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 16:51:18,531 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:18,572 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 16:51:20,334 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:22,226 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:24,041 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:24,100 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 16:51:24,103 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 16:51:24,107 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 16:51:24,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 16:51:25,861 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:27,675 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:29,478 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:29,518 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 16:51:31,306 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:31,345 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 16:51:33,121 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:33,163 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 16:51:34,941 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:36,761 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:36,800 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 16:51:38,574 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 16:51:38,613 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 17:02:41,947 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 17:02:41,991 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 17:02:42,298 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 17:02:42,515 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 17:02:47,094 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:37 -02 二月 2026 | 17:02:47,238 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 17:02:49,367 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:02:49,408 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 17:02:49,449 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 17:02:52,188 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:31 -02 二月 2026 | 17:02:52,313 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 17:02:53,964 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:02:54,001 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 17:02:54,042 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 17:02:56,775 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:30 -02 二月 2026 | 17:02:56,906 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 17:02:58,543 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:02:58,580 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 17:02:58,621 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 17:03:01,365 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:30 -02 二月 2026 | 17:03:01,491 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 17:03:03,131 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:03,167 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 17:03:03,208 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 17:03:04,056 | ERROR | Thread-29 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 17:03:04,060 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 17:03:05,943 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:30 -02 二月 2026 | 17:03:06,068 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 17:03:07,703 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:07,779 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 17:03:09,393 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:11,081 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:12,760 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:14,050 | ERROR | Thread-33 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 17:03:14,055 | ERROR | Thread-37 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 17:03:14,435 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:16,122 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:16,159 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 17:03:17,823 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:19,746 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:21,501 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:21,539 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 17:03:23,519 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:23,556 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 17:03:24,054 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 17:03:24,057 | ERROR | Thread-41 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 17:03:24,059 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 17:03:25,219 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:26,910 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:26,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 17:03:28,900 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:28,937 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 17:03:30,592 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:32,265 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:33,935 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:33,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 17:03:34,056 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 17:03:35,619 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:37,294 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:37,331 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 17:03:38,962 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:03:38,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 17:05:18,612 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 17:05:18,668 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 17:05:18,985 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 17:05:19,200 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 17:05:23,531 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:38 -02 二月 2026 | 17:05:23,668 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 17:05:26,019 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:05:26,059 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 17:05:26,099 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 17:05:28,538 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:32 -02 二月 2026 | 17:05:28,665 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 17:05:52,780 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 17:05:52,835 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 17:05:53,171 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 17:05:53,400 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 17:05:57,655 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:39 -02 二月 2026 | 17:05:57,789 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 17:06:14,109 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 17:06:14,113 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 17:59:50,597 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 17:59:54,078 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 17:59:54,125 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 17:59:54,449 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 17:59:54,670 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 17:59:58,911 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:40 -02 二月 2026 | 17:59:59,045 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:04:14,174 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:14,174 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 18:04:14,178 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 18:04:16,562 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 18:04:16,614 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 18:04:16,974 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 18:04:17,209 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:04:21,412 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:41 -02 二月 2026 | 18:04:21,547 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:04:23,697 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:23,747 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 18:04:23,798 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:04:26,189 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:33 -02 二月 2026 | 18:04:26,319 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:04:28,037 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:28,087 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 18:04:28,128 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:04:30,508 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:31 -02 二月 2026 | 18:04:30,643 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:04:32,310 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:32,359 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 18:04:32,400 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:04:34,785 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:31 -02 二月 2026 | 18:04:34,913 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:04:36,591 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:36,639 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 18:04:36,681 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:04:39,054 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:31 -02 二月 2026 | 18:04:39,191 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:04:41,024 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:43,452 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:44,088 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 18:04:44,089 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 18:04:44,093 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 18:04:44,093 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 18:04:45,180 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:46,904 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:48,629 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:50,361 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:52,127 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:53,868 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:54,089 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 18:04:54,091 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 18:04:54,092 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 18:04:54,094 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 18:04:55,598 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:57,324 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull -02 二月 2026 | 18:04:57,374 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 18:09:01,131 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 18:09:01,185 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 18:09:01,470 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 18:09:01,676 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:09:06,422 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:42 -02 二月 2026 | 18:09:06,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:09:09,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:627364 -02 二月 2026 | 18:09:09,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 18:09:09,546 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 18:09:09,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 18:09:09,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 18:09:09,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 18:09:10,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 18:09:10,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 18:09:10,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 18:09:10,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 18:09:10,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 18:09:10,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 18:09:10,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 18:09:10,694 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@444f5377 -02 二月 2026 | 18:09:11,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 18:09:11,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 18:09:11,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 18:09:11,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 18:09:11,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 18:09:11,710 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 18:09:12,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 18:09:28,332 | ERROR | Thread-29 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 18:09:28,336 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 18:09:53,536 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 18:09:53,578 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:09:56,140 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:34 -02 二月 2026 | 18:09:56,269 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:09:58,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:627364 -02 二月 2026 | 18:09:58,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 18:09:58,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 18:09:59,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 18:09:59,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 18:09:59,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 18:10:07,136 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 18:10:07,189 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 18:10:07,549 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 18:10:07,779 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:10:12,057 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:43 -02 二月 2026 | 18:10:12,207 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:10:15,178 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:627364 -02 二月 2026 | 18:10:15,219 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 18:10:15,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 18:10:15,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 18:10:15,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 18:10:15,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 18:10:16,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 18:10:16,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 18:10:16,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 18:10:16,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 18:10:16,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 18:10:16,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 18:10:16,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 18:10:16,561 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7dcf8447 -02 二月 2026 | 18:10:17,282 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 18:10:17,282 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 18:10:17,282 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 18:10:17,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 18:10:17,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 18:10:17,532 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 18:10:18,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 18:10:25,112 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 18:10:25,152 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:10:27,737 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:35 -02 二月 2026 | 18:10:27,873 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:10:30,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:627364 -02 二月 2026 | 18:10:30,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [364881]] -02 二月 2026 | 18:10:31,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [364881]] -02 二月 2026 | 18:10:31,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 18:10:31,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 18:10:31,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 18:10:31,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 18:10:31,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 18:10:31,849 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 18:10:31,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 18:10:31,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 18:10:31,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 18:10:31,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 18:10:32,234 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@75d8668e -02 二月 2026 | 18:10:32,966 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 18:10:32,966 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 18:10:32,966 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 18:10:33,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 18:10:33,049 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 18:10:33,212 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 18:10:33,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 18:10:40,867 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 18:10:40,908 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 18:10:43,858 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:32 -02 二月 2026 | 18:10:44,002 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 18:10:44,197 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 18:10:44,203 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 18:10:46,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:638402 -02 二月 2026 | 18:10:46,686 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] -02 二月 2026 | 18:10:46,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] -02 二月 2026 | 18:10:46,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 18:10:46,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 18:10:46,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 18:10:47,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 18:10:47,494 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 18:10:47,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 18:10:47,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 18:10:47,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 18:10:47,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 18:10:47,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 18:10:47,923 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1269c127 -02 二月 2026 | 18:10:48,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 18:10:48,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 18:10:48,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 18:10:48,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 18:10:48,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 18:10:48,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 18:10:49,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:41:00,471 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 19:41:00,541 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 19:41:00,880 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 19:41:01,102 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:41:05,978 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:44 -02 二月 2026 | 19:41:06,149 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:41:08,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:41:09,959 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:41:09,960 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:41:09,960 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:391901 -02 二月 2026 | 19:41:10,296 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 -02 二月 2026 | 19:41:11,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:391901 -02 二月 2026 | 19:41:12,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:12,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:12,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:41:12,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:41:12,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:41:12,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:41:12,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:41:12,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:41:12,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:41:12,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:41:12,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:41:13,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:41:13,355 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2f73ca74 -02 二月 2026 | 19:41:14,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:41:14,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:41:14,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:41:14,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:41:14,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:41:14,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:41:15,604 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 19:41:15,640 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:41:18,241 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:36 -02 二月 2026 | 19:41:18,350 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:41:20,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:391901 -02 二月 2026 | 19:41:20,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:20,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:20,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:41:20,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:41:20,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:41:21,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:41:21,396 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:41:21,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:41:21,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:41:21,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:41:21,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:41:21,588 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:41:21,808 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6ed25a4d -02 二月 2026 | 19:41:22,514 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:41:22,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 19:41:22,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:41:22,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:41:22,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:41:22,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:41:22,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:41:22,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:41:23,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:41:24,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:41:24,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:41:24,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:533872 -02 二月 2026 | 19:41:24,781 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 -02 二月 2026 | 19:41:26,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:533872 -02 二月 2026 | 19:41:26,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:26,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:27,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:41:27,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:41:27,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:41:27,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:41:27,540 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:41:27,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:41:27,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:41:27,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:41:27,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:41:27,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:41:27,942 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6ed25a4d -02 二月 2026 | 19:41:28,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:41:28,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:41:28,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:41:28,686 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:41:28,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:41:28,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:41:30,244 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 19:41:30,279 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:41:33,199 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:33 -02 二月 2026 | 19:41:33,349 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:41:35,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:533872 -02 二月 2026 | 19:41:35,616 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:35,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:35,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:41:35,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:41:35,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:41:36,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:41:36,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:41:36,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:41:36,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:41:36,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:41:36,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:41:36,672 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:41:36,934 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@12a92382 -02 二月 2026 | 19:41:37,645 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:41:37,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:41:37,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:41:37,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:41:37,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:41:37,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:41:38,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:41:39,439 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:41:39,439 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:41:39,439 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:551441 -02 二月 2026 | 19:41:39,787 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:528242 -02 二月 2026 | 19:41:41,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:551441 -02 二月 2026 | 19:41:41,546 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:41,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:41:41,853 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:41:41,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:41:41,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:41:42,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:41:42,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:41:42,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:41:42,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:41:42,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:41:42,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:41:42,523 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:41:42,523 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:41:42,525 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 19:41:42,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@12a92382 -02 二月 2026 | 19:41:43,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:41:43,526 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:41:43,526 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:41:43,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:41:43,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:41:43,772 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:41:45,135 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 19:41:45,177 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:41:48,000 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:32 -02 二月 2026 | 19:41:48,117 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:41:50,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:551441 -02 二月 2026 | 19:41:50,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] -02 二月 2026 | 19:41:50,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] -02 二月 2026 | 19:41:50,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:41:50,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:41:50,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:41:51,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:41:51,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:41:51,487 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:41:51,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:41:51,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:41:51,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:41:51,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:41:51,918 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65bde423 -02 二月 2026 | 19:41:52,520 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:41:52,521 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 19:41:52,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:41:52,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:41:52,750 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:41:52,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:41:52,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:41:52,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:41:53,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:41:54,472 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:41:54,472 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:41:54,472 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:498374 -02 二月 2026 | 19:41:57,888 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 19:41:57,955 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 19:41:58,208 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 19:41:58,432 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:42:02,921 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:45 -02 二月 2026 | 19:42:03,068 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:42:05,754 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:551441 -02 二月 2026 | 19:42:05,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] -02 二月 2026 | 19:42:05,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] -02 二月 2026 | 19:42:06,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:42:06,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:42:06,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:42:06,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:42:06,896 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:42:06,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:42:06,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:42:06,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:42:06,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:42:07,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:42:07,354 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3fbfc6fe -02 二月 2026 | 19:42:08,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:42:08,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:42:08,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:42:08,163 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:42:08,227 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:42:08,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:42:09,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:42:10,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:42:10,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:42:10,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:641287 -02 二月 2026 | 19:42:10,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 -02 二月 2026 | 19:42:12,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:641287 -02 二月 2026 | 19:42:12,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:42:12,624 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:42:12,762 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:42:12,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:42:12,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:42:13,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:42:13,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:42:13,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:42:13,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:42:13,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:42:13,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:42:13,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:42:13,986 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3fbfc6fe -02 二月 2026 | 19:42:14,855 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:42:14,855 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:42:14,855 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:42:14,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:42:14,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:42:15,074 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:43:03,074 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 19:43:03,119 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 19:43:03,369 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 19:43:03,598 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:43:10,105 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 19:43:10,151 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 19:43:10,490 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 19:43:10,724 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:43:15,295 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:46 -02 二月 2026 | 19:43:15,426 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:43:18,638 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:551441 -02 二月 2026 | 19:43:18,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] -02 二月 2026 | 19:43:18,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] -02 二月 2026 | 19:43:19,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:43:19,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:43:19,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:43:19,444 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:43:19,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:43:19,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:43:19,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:43:19,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:43:19,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:43:19,790 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:43:19,996 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5808aa78 -02 二月 2026 | 19:43:20,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:43:20,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:43:20,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:43:20,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:43:20,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:43:20,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:43:21,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:43:22,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:43:22,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:43:22,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:838845 -02 二月 2026 | 19:43:22,909 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 -02 二月 2026 | 19:43:24,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:838845 -02 二月 2026 | 19:43:24,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:43:24,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:43:24,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:43:24,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:43:24,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:43:25,298 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:43:25,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:43:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:43:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:43:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:43:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:43:25,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:43:25,850 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5808aa78 -02 二月 2026 | 19:43:26,528 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:43:26,529 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:43:26,529 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:43:26,573 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:43:26,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:43:26,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:47:18,433 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:47:18,438 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 19:47:32,106 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 19:47:32,247 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:47:35,559 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:37 -02 二月 2026 | 19:47:36,687 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:47:39,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:838845 -02 二月 2026 | 19:47:39,396 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:47:39,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:47:39,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:47:39,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:47:39,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:47:40,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:47:40,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:47:40,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:47:40,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:47:40,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:47:40,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:47:40,499 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:47:40,710 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@539e5e3a -02 二月 2026 | 19:47:41,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:47:41,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:47:41,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:47:41,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:47:41,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:47:41,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:47:42,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:47:43,140 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:47:43,140 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:47:43,140 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:851968 -02 二月 2026 | 19:47:43,527 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 -02 二月 2026 | 19:47:45,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851968 -02 二月 2026 | 19:47:45,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:47:45,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:47:45,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:47:45,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:47:45,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:47:45,900 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:47:46,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:47:46,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:47:46,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:47:46,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:47:46,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:47:46,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:47:46,444 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@539e5e3a -02 二月 2026 | 19:47:47,092 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:47:47,092 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:47:47,092 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:47:47,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:47:47,178 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:47:47,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:47:48,730 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 19:47:48,767 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:47:51,704 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:34 -02 二月 2026 | 19:47:51,826 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:47:54,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851968 -02 二月 2026 | 19:47:54,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:47:54,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:47:54,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:47:54,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:47:54,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:47:55,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:47:55,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:47:55,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:47:55,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:47:55,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:47:55,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:47:55,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:47:55,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@112e0f5c -02 二月 2026 | 19:47:56,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:47:56,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:47:56,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:47:56,438 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:47:56,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:47:56,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:47:57,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:47:58,256 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:47:58,256 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:47:58,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:930729 -02 二月 2026 | 19:47:58,598 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:528242 -02 二月 2026 | 19:48:00,224 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:930729 -02 二月 2026 | 19:48:00,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:00,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:00,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:48:00,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:48:00,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:48:01,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:48:01,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:48:01,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:48:01,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:48:01,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:48:01,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:48:01,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:48:01,645 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@112e0f5c -02 二月 2026 | 19:48:02,320 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:48:02,320 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:48:02,320 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:48:02,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:48:02,370 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:48:02,373 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 19:48:02,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:48:02,533 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:48:03,869 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 19:48:03,913 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:48:06,861 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:33 -02 二月 2026 | 19:48:06,987 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:48:09,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:930729 -02 二月 2026 | 19:48:09,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:09,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:10,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:48:10,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:48:10,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:48:10,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:48:10,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:48:10,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:48:10,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:48:10,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:48:10,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:48:10,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:48:11,026 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@56823148 -02 二月 2026 | 19:48:11,846 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:48:11,846 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:48:11,846 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:48:11,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:48:11,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:48:12,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:48:12,373 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:48:12,376 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 19:48:12,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:48:13,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:48:13,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:48:13,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:925502 -02 二月 2026 | 19:48:14,061 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 -02 二月 2026 | 19:48:15,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:925502 -02 二月 2026 | 19:48:15,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:15,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:15,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:48:15,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:48:15,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:48:16,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:48:16,407 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:48:16,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:48:16,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 19:48:16,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:48:16,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:48:16,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:48:16,894 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@56823148 -02 二月 2026 | 19:48:17,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:48:17,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:48:17,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:48:17,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:48:17,849 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:48:17,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:48:19,379 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 19:48:19,418 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 19:48:22,121 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:32 -02 二月 2026 | 19:48:22,249 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:48:25,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:930729 -02 二月 2026 | 19:48:25,467 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:25,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:25,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:48:25,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:48:25,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:48:26,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:48:26,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:48:26,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:48:26,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3294000 -02 二月 2026 | 19:48:26,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:48:26,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:48:26,427 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:48:26,689 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@21ec45b -02 二月 2026 | 19:48:27,438 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:48:27,438 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:48:27,438 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:48:27,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:48:27,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:48:27,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:48:28,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 19:48:29,350 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 19:48:29,350 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 19:48:29,350 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:351145 -02 二月 2026 | 19:48:29,706 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:972225 -02 二月 2026 | 19:48:31,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:351145 -02 二月 2026 | 19:48:31,459 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:31,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 19:48:31,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 19:48:31,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 19:48:31,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 19:48:32,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 19:48:32,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 19:48:32,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 19:48:32,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3294000 -02 二月 2026 | 19:48:32,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 19:48:32,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 19:48:32,381 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:48:32,383 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 19:48:32,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 19:48:32,641 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@21ec45b -02 二月 2026 | 19:48:33,348 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 19:48:33,349 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 19:48:33,349 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 19:48:33,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 19:48:33,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 19:48:33,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,981 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,981 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,981 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,992 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:42,379 | ERROR | Thread-55 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:48:42,381 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 19:48:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:52,391 | ERROR | Thread-60 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:48:52,391 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:48:52,391 | ERROR | Thread-61 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:48:52,391 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:48:52,392 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 19:48:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:12,384 | ERROR | Thread-70 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:12,388 | ERROR | Thread-72 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:12,388 | ERROR | Thread-65 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:12,388 | ERROR | Thread-71 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:12,392 | ERROR | Thread-73 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:32,393 | ERROR | Thread-79 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:32,394 | ERROR | Thread-82 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:32,393 | ERROR | Thread-81 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:32,393 | ERROR | Thread-80 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:32,397 | ERROR | Thread-83 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:52,399 | ERROR | Thread-91 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:52,399 | ERROR | Thread-89 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:52,399 | ERROR | Thread-90 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:52,400 | ERROR | Thread-92 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:52,403 | ERROR | Thread-93 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:12,438 | ERROR | Thread-101 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:12,438 | ERROR | Thread-102 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:12,438 | ERROR | Thread-99 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:12,438 | ERROR | Thread-100 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:12,438 | ERROR | Thread-103 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:32,409 | ERROR | Thread-110 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:32,409 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:32,409 | ERROR | Thread-109 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:32,409 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:32,411 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:52,431 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:52,431 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:52,431 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:52,431 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:52,431 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:12,439 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:12,439 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:12,439 | ERROR | Thread-133 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:12,439 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:12,439 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:32,427 | ERROR | Thread-140 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:32,427 | ERROR | Thread-143 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:32,427 | ERROR | Thread-142 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:32,427 | ERROR | Thread-139 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:32,427 | ERROR | Thread-141 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:52,440 | ERROR | Thread-150 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:52,440 | ERROR | Thread-149 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:52,440 | ERROR | Thread-153 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:52,440 | ERROR | Thread-151 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:52,440 | ERROR | Thread-152 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:51:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:12,437 | ERROR | Thread-160 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:12,543 | ERROR | Thread-161 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:12,543 | ERROR | Thread-163 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:12,543 | ERROR | Thread-162 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:12,543 | ERROR | Thread-159 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:32,525 | ERROR | Thread-170 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:32,525 | ERROR | Thread-171 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:32,525 | ERROR | Thread-169 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:32,525 | ERROR | Thread-173 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:32,525 | ERROR | Thread-172 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:52,452 | ERROR | Thread-179 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:52,452 | ERROR | Thread-182 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:52,452 | ERROR | Thread-183 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:52,452 | ERROR | Thread-181 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:52,452 | ERROR | Thread-180 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:12,461 | ERROR | Thread-190 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:12,461 | ERROR | Thread-192 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:12,461 | ERROR | Thread-193 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:12,461 | ERROR | Thread-191 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:12,461 | ERROR | Thread-189 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:32,461 | ERROR | Thread-200 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:32,461 | ERROR | Thread-203 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:32,461 | ERROR | Thread-202 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:32,461 | ERROR | Thread-201 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:32,462 | ERROR | Thread-199 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:49,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:49,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:49,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:49,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:52,468 | ERROR | Thread-212 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:52,468 | ERROR | Thread-213 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:52,468 | ERROR | Thread-211 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:52,468 | ERROR | Thread-209 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:52,468 | ERROR | Thread-210 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:12,473 | ERROR | Thread-220 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:12,473 | ERROR | Thread-221 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:12,473 | ERROR | Thread-222 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:12,473 | ERROR | Thread-219 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:12,474 | ERROR | Thread-223 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:32,478 | ERROR | Thread-229 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:32,478 | ERROR | Thread-232 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:32,478 | ERROR | Thread-231 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:32,478 | ERROR | Thread-230 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:32,492 | ERROR | Thread-233 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:52,484 | ERROR | Thread-240 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:52,484 | ERROR | Thread-243 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:52,484 | ERROR | Thread-239 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:52,490 | ERROR | Thread-242 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:52,490 | ERROR | Thread-241 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:54:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:12,490 | ERROR | Thread-254 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:12,490 | ERROR | Thread-250 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:12,490 | ERROR | Thread-249 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:12,490 | ERROR | Thread-252 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:12,494 | ERROR | Thread-251 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:32,556 | ERROR | Thread-263 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:32,557 | ERROR | Thread-262 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:32,556 | ERROR | Thread-264 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:32,556 | ERROR | Thread-261 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:32,556 | ERROR | Thread-260 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:52,517 | ERROR | Thread-273 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:52,517 | ERROR | Thread-271 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:52,517 | ERROR | Thread-275 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:52,518 | ERROR | Thread-272 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:52,518 | ERROR | Thread-274 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:12,547 | ERROR | Thread-282 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:12,547 | ERROR | Thread-285 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:12,547 | ERROR | Thread-284 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:12,547 | ERROR | Thread-281 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:12,547 | ERROR | Thread-283 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:19,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:19,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:19,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:19,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:32,512 | ERROR | Thread-292 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:32,513 | ERROR | Thread-293 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:32,513 | ERROR | Thread-295 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:32,512 | ERROR | Thread-291 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:32,522 | ERROR | Thread-294 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:52,518 | ERROR | Thread-305 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:52,518 | ERROR | Thread-306 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:52,518 | ERROR | Thread-303 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:52,518 | ERROR | Thread-304 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:52,518 | ERROR | Thread-302 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:12,634 | ERROR | Thread-313 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:12,634 | ERROR | Thread-315 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:12,634 | ERROR | Thread-312 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:12,634 | ERROR | Thread-314 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:12,634 | ERROR | Thread-316 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:32,529 | ERROR | Thread-323 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:32,529 | ERROR | Thread-324 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:32,531 | ERROR | Thread-325 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:32,531 | ERROR | Thread-322 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:32,553 | ERROR | Thread-326 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:52,538 | ERROR | Thread-335 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:52,538 | ERROR | Thread-334 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:52,538 | ERROR | Thread-337 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:52,538 | ERROR | Thread-333 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:52,538 | ERROR | Thread-336 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:12,549 | ERROR | Thread-347 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:12,549 | ERROR | Thread-343 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:12,549 | ERROR | Thread-346 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:12,549 | ERROR | Thread-344 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:12,549 | ERROR | Thread-345 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:32,573 | ERROR | Thread-354 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:32,573 | ERROR | Thread-357 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:32,573 | ERROR | Thread-356 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:32,573 | ERROR | Thread-353 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:32,573 | ERROR | Thread-355 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:43,492 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:52,551 | ERROR | Thread-364 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:52,551 | ERROR | Thread-365 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:52,553 | ERROR | Thread-366 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:52,566 | ERROR | Thread-368 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:52,566 | ERROR | Thread-367 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:12,556 | ERROR | Thread-374 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:12,558 | ERROR | Thread-375 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:12,558 | ERROR | Thread-377 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:12,558 | ERROR | Thread-376 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:12,563 | ERROR | Thread-378 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:32,568 | ERROR | Thread-388 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:32,568 | ERROR | Thread-387 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:32,568 | ERROR | Thread-386 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:32,568 | ERROR | Thread-385 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:32,568 | ERROR | Thread-384 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:52,574 | ERROR | Thread-394 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:52,574 | ERROR | Thread-398 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:52,574 | ERROR | Thread-397 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:52,574 | ERROR | Thread-396 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:52,574 | ERROR | Thread-395 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:12,581 | ERROR | Thread-405 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:12,581 | ERROR | Thread-407 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:12,581 | ERROR | Thread-408 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:12,581 | ERROR | Thread-406 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:12,581 | ERROR | Thread-404 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:32,579 | ERROR | Thread-414 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:32,581 | ERROR | Thread-416 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:32,581 | ERROR | Thread-418 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:32,582 | ERROR | Thread-415 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:32,586 | ERROR | Thread-417 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:52,586 | ERROR | Thread-425 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:52,586 | ERROR | Thread-424 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:52,591 | ERROR | Thread-427 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:52,591 | ERROR | Thread-428 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:52,591 | ERROR | Thread-426 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:12,591 | ERROR | Thread-434 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:12,592 | ERROR | Thread-438 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:12,593 | ERROR | Thread-435 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:12,591 | ERROR | Thread-436 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:12,593 | ERROR | Thread-437 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:32,598 | ERROR | Thread-448 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:32,598 | ERROR | Thread-446 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:32,598 | ERROR | Thread-444 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:32,598 | ERROR | Thread-445 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:32,599 | ERROR | Thread-447 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:52,614 | ERROR | Thread-454 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:52,614 | ERROR | Thread-458 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:52,614 | ERROR | Thread-455 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:52,614 | ERROR | Thread-457 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:52,614 | ERROR | Thread-456 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:12,613 | ERROR | Thread-468 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:12,613 | ERROR | Thread-467 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:12,613 | ERROR | Thread-466 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:12,613 | ERROR | Thread-464 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:12,620 | ERROR | Thread-465 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:32,615 | ERROR | Thread-474 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:32,615 | ERROR | Thread-476 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:32,615 | ERROR | Thread-475 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:32,615 | ERROR | Thread-477 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:32,616 | ERROR | Thread-478 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:52,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:52,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:52,619 | ERROR | Thread-484 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:52,620 | ERROR | Thread-486 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:52,634 | ERROR | Thread-487 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:52,634 | ERROR | Thread-485 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:52,634 | ERROR | Thread-488 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:10,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:10,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:10,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:12,380 | ERROR | Thread-497 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:12,380 | ERROR | Thread-495 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:12,380 | ERROR | Thread-496 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:12,380 | ERROR | Thread-494 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:12,396 | ERROR | Thread-498 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:32,389 | ERROR | Thread-507 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:32,389 | ERROR | Thread-509 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:32,389 | ERROR | Thread-510 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:32,389 | ERROR | Thread-508 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:32,389 | ERROR | Thread-511 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:52,414 | ERROR | Thread-519 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:52,414 | ERROR | Thread-520 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:52,414 | ERROR | Thread-517 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:52,414 | ERROR | Thread-518 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:52,414 | ERROR | Thread-521 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:12,399 | ERROR | Thread-528 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:12,399 | ERROR | Thread-529 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:12,399 | ERROR | Thread-530 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:12,399 | ERROR | Thread-527 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:12,402 | ERROR | Thread-531 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:32,403 | ERROR | Thread-537 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:32,403 | ERROR | Thread-541 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:32,403 | ERROR | Thread-539 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:32,403 | ERROR | Thread-540 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:32,403 | ERROR | Thread-538 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:52,408 | ERROR | Thread-549 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:52,408 | ERROR | Thread-548 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:52,409 | ERROR | Thread-547 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:52,408 | ERROR | Thread-550 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:52,410 | ERROR | Thread-551 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:04:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:10,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:10,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:10,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:10,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:12,420 | ERROR | Thread-563 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:12,420 | ERROR | Thread-561 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:12,420 | ERROR | Thread-562 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:12,420 | ERROR | Thread-560 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:12,420 | ERROR | Thread-559 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:32,419 | ERROR | Thread-572 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:32,419 | ERROR | Thread-570 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:32,419 | ERROR | Thread-571 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:32,419 | ERROR | Thread-569 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:32,422 | ERROR | Thread-573 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:52,428 | ERROR | Thread-582 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:52,428 | ERROR | Thread-580 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:52,428 | ERROR | Thread-583 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:52,428 | ERROR | Thread-581 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:52,428 | ERROR | Thread-584 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:12,444 | ERROR | Thread-590 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:12,445 | ERROR | Thread-593 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:12,445 | ERROR | Thread-592 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:12,445 | ERROR | Thread-594 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:12,445 | ERROR | Thread-591 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:32,436 | ERROR | Thread-602 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:32,437 | ERROR | Thread-603 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:32,437 | ERROR | Thread-604 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:32,436 | ERROR | Thread-600 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:32,436 | ERROR | Thread-601 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:52,443 | ERROR | Thread-611 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:52,443 | ERROR | Thread-614 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:52,443 | ERROR | Thread-613 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:52,445 | ERROR | Thread-615 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:52,445 | ERROR | Thread-612 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:12,460 | ERROR | Thread-621 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:12,461 | ERROR | Thread-625 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:12,461 | ERROR | Thread-624 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:12,461 | ERROR | Thread-623 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:12,460 | ERROR | Thread-622 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:32,481 | ERROR | Thread-634 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:32,481 | ERROR | Thread-632 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:32,481 | ERROR | Thread-631 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:32,481 | ERROR | Thread-633 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:32,481 | ERROR | Thread-635 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:52,462 | ERROR | Thread-643 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:52,462 | ERROR | Thread-642 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:52,462 | ERROR | Thread-644 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:52,462 | ERROR | Thread-641 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:52,471 | ERROR | Thread-645 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:12,470 | ERROR | Thread-652 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:12,471 | ERROR | Thread-655 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:12,471 | ERROR | Thread-654 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:12,470 | ERROR | Thread-653 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:12,470 | ERROR | Thread-656 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:25,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:25,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:25,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:25,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:32,472 | ERROR | Thread-663 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:32,472 | ERROR | Thread-662 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:32,472 | ERROR | Thread-665 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:32,472 | ERROR | Thread-664 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:32,476 | ERROR | Thread-666 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:52,481 | ERROR | Thread-677 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:52,481 | ERROR | Thread-675 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:52,481 | ERROR | Thread-676 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:52,481 | ERROR | Thread-674 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:52,486 | ERROR | Thread-673 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:12,484 | ERROR | Thread-683 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:12,484 | ERROR | Thread-687 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:12,484 | ERROR | Thread-685 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:12,484 | ERROR | Thread-684 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:12,488 | ERROR | Thread-686 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:32,492 | ERROR | Thread-695 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:32,493 | ERROR | Thread-696 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:32,492 | ERROR | Thread-697 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:32,492 | ERROR | Thread-694 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:32,492 | ERROR | Thread-693 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:52,513 | ERROR | Thread-704 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:52,514 | ERROR | Thread-706 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:52,514 | ERROR | Thread-705 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:52,514 | ERROR | Thread-708 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:52,513 | ERROR | Thread-707 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:12,510 | ERROR | Thread-717 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:12,510 | ERROR | Thread-714 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:12,510 | ERROR | Thread-718 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:12,510 | ERROR | Thread-715 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:12,510 | ERROR | Thread-716 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:32,506 | ERROR | Thread-724 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:32,518 | ERROR | Thread-725 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:32,518 | ERROR | Thread-726 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:32,518 | ERROR | Thread-727 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:32,519 | ERROR | Thread-728 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:46,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:46,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:46,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:46,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:52,526 | ERROR | Thread-735 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:52,526 | ERROR | Thread-738 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:52,526 | ERROR | Thread-737 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:52,526 | ERROR | Thread-736 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:52,526 | ERROR | Thread-739 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:12,517 | ERROR | Thread-745 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:12,518 | ERROR | Thread-746 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:12,518 | ERROR | Thread-747 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:12,518 | ERROR | Thread-748 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:12,525 | ERROR | Thread-749 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:32,535 | ERROR | Thread-755 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:32,535 | ERROR | Thread-757 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:32,535 | ERROR | Thread-758 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:32,535 | ERROR | Thread-759 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:32,535 | ERROR | Thread-756 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:52,527 | ERROR | Thread-766 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:52,529 | ERROR | Thread-768 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:52,529 | ERROR | Thread-769 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:52,532 | ERROR | Thread-770 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:52,535 | ERROR | Thread-767 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:12,540 | ERROR | Thread-777 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:12,541 | ERROR | Thread-779 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:12,540 | ERROR | Thread-780 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:12,540 | ERROR | Thread-776 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:12,540 | ERROR | Thread-778 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:32,541 | ERROR | Thread-787 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:32,541 | ERROR | Thread-786 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:32,542 | ERROR | Thread-790 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:32,547 | ERROR | Thread-788 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:32,547 | ERROR | Thread-789 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:40,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:40,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:40,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:40,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:52,549 | ERROR | Thread-800 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:52,549 | ERROR | Thread-801 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:52,549 | ERROR | Thread-798 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:52,549 | ERROR | Thread-797 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:52,549 | ERROR | Thread-799 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:12,553 | ERROR | Thread-811 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:12,553 | ERROR | Thread-808 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:12,553 | ERROR | Thread-809 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:12,559 | ERROR | Thread-810 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:12,559 | ERROR | Thread-807 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:25,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:25,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:25,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:25,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:32,563 | ERROR | Thread-817 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:32,563 | ERROR | Thread-818 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:32,572 | ERROR | Thread-819 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:32,572 | ERROR | Thread-821 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:32,572 | ERROR | Thread-820 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:52,580 | ERROR | Thread-828 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:52,580 | ERROR | Thread-829 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:52,580 | ERROR | Thread-832 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:52,580 | ERROR | Thread-831 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:52,580 | ERROR | Thread-830 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:12,570 | ERROR | Thread-841 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:12,570 | ERROR | Thread-840 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:12,570 | ERROR | Thread-838 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:12,570 | ERROR | Thread-839 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:12,572 | ERROR | Thread-842 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:32,578 | ERROR | Thread-850 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:32,579 | ERROR | Thread-849 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:32,579 | ERROR | Thread-853 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:32,579 | ERROR | Thread-852 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:32,578 | ERROR | Thread-851 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:52,585 | ERROR | Thread-860 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:52,585 | ERROR | Thread-864 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:52,585 | ERROR | Thread-863 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:52,585 | ERROR | Thread-861 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:52,585 | ERROR | Thread-862 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:12,614 | ERROR | Thread-872 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:12,615 | ERROR | Thread-874 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:12,614 | ERROR | Thread-871 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:12,614 | ERROR | Thread-873 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:12,614 | ERROR | Thread-870 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:32,593 | ERROR | Thread-880 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:32,593 | ERROR | Thread-882 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:32,594 | ERROR | Thread-881 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:32,594 | ERROR | Thread-884 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:32,595 | ERROR | Thread-883 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:52,607 | ERROR | Thread-894 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:52,607 | ERROR | Thread-895 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:52,607 | ERROR | Thread-892 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:52,613 | ERROR | Thread-893 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:52,613 | ERROR | Thread-891 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:12,633 | ERROR | Thread-904 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:12,633 | ERROR | Thread-901 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:12,633 | ERROR | Thread-903 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:12,633 | ERROR | Thread-902 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:12,633 | ERROR | Thread-905 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:32,611 | ERROR | Thread-911 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:32,611 | ERROR | Thread-912 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:32,611 | ERROR | Thread-913 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:32,613 | ERROR | Thread-915 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:32,613 | ERROR | Thread-914 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:52,621 | ERROR | Thread-925 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:52,621 | ERROR | Thread-924 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:52,624 | ERROR | Thread-922 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:52,625 | ERROR | Thread-923 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:52,624 | ERROR | Thread-926 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:12,640 | ERROR | Thread-935 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:12,640 | ERROR | Thread-932 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:12,640 | ERROR | Thread-933 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:12,640 | ERROR | Thread-936 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:12,640 | ERROR | Thread-934 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:32,646 | ERROR | Thread-944 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:32,646 | ERROR | Thread-945 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:32,646 | ERROR | Thread-942 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:32,646 | ERROR | Thread-943 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:32,646 | ERROR | Thread-946 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:52,384 | ERROR | Thread-954 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:52,384 | ERROR | Thread-957 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:52,385 | ERROR | Thread-956 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:52,385 | ERROR | Thread-955 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:52,385 | ERROR | Thread-953 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:12,391 | ERROR | Thread-966 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:18:12,392 | ERROR | Thread-963 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:18:12,391 | ERROR | Thread-964 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:18:12,391 | ERROR | Thread-967 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:18:12,391 | ERROR | Thread-965 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:45:24,304 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 20:45:24,358 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 20:45:24,666 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 20:45:24,870 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 20:45:29,564 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:47 -02 二月 2026 | 20:45:29,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 20:45:32,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 20:45:33,419 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 20:45:33,419 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 20:45:33,419 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:244865 -02 二月 2026 | 20:45:33,773 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 -02 二月 2026 | 20:45:35,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:244865 -02 二月 2026 | 20:45:35,308 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:45:35,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:45:35,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:45:35,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:45:35,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:45:35,965 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:45:36,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:45:36,169 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:45:36,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:45:36,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:45:36,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:45:36,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:45:36,712 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@45af741d -02 二月 2026 | 20:45:37,432 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:45:37,433 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:45:37,433 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:45:37,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:45:37,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:45:37,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:45:39,008 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 20:45:39,056 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 20:45:41,835 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:38 -02 二月 2026 | 20:45:42,078 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 20:45:44,354 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:244865 -02 二月 2026 | 20:45:44,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:45:44,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:45:44,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:45:44,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:45:44,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:45:45,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:45:45,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:45:45,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:45:45,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:45:45,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:45:45,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:45:45,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:45:45,580 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7efcce18 -02 二月 2026 | 20:45:46,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:45:46,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:45:46,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:45:46,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:45:46,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:45:46,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:45:47,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 20:45:48,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 20:45:48,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 20:45:48,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:295440 -02 二月 2026 | 20:45:48,406 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 -02 二月 2026 | 20:45:50,491 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295440 -02 二月 2026 | 20:45:50,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:45:50,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:45:50,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:45:50,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:45:50,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:45:51,387 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:45:51,504 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:45:51,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:45:51,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:45:51,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:45:51,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:45:51,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:45:51,957 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7efcce18 -02 二月 2026 | 20:45:52,612 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:45:52,617 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 20:45:52,841 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:45:52,841 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:45:52,841 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:45:52,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:45:52,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:45:53,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:45:54,653 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 20:45:54,690 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 20:45:57,843 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:35 -02 二月 2026 | 20:45:57,978 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 20:46:00,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295440 -02 二月 2026 | 20:46:00,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:00,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:00,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:46:00,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:46:00,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:46:01,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:46:01,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:46:01,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:46:01,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:46:01,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:46:01,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:46:01,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:46:01,762 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@63384b22 -02 二月 2026 | 20:46:02,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:46:02,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:46:02,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:46:02,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:46:02,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:46:02,619 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:46:02,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 20:46:02,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:46:06,252 | INFO | main | core.plugin.PluginService | | plugin[database] load success! -02 二月 2026 | 20:46:06,301 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! -02 二月 2026 | 20:46:06,548 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login -02 二月 2026 | 20:46:06,764 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 20:46:11,496 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:48 -02 二月 2026 | 20:46:11,654 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 20:46:14,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295440 -02 二月 2026 | 20:46:14,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:14,849 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:14,964 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:46:14,964 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:46:14,964 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:46:15,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:46:15,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:46:15,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:46:15,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:46:15,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:46:15,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:46:15,774 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:46:16,002 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@444f5377 -02 二月 2026 | 20:46:16,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:46:16,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:46:16,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:46:16,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:46:17,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:46:17,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:46:17,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 20:46:18,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 20:46:18,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 20:46:18,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:115452 -02 二月 2026 | 20:46:19,096 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 -02 二月 2026 | 20:46:20,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:115452 -02 二月 2026 | 20:46:20,840 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:21,048 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:21,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:46:21,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:46:21,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:46:21,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:46:21,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:46:21,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:46:21,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:46:21,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:46:21,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:46:21,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:46:22,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@444f5377 -02 二月 2026 | 20:46:22,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:46:22,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:46:22,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:46:22,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:46:22,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:46:22,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:46:24,406 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login -02 二月 2026 | 20:46:24,443 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 20:46:27,200 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:39 -02 二月 2026 | 20:46:27,325 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 20:46:30,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295440 -02 二月 2026 | 20:46:30,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:30,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:30,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:46:30,465 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:46:30,465 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:46:30,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:46:30,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:46:30,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:46:30,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:46:30,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:46:30,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:46:31,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:46:31,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15400034 -02 二月 2026 | 20:46:32,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:46:32,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:46:32,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:46:32,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:46:32,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:46:32,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:46:32,627 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:46:32,631 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 20:46:32,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 20:46:33,684 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 20:46:33,685 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 20:46:33,685 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:587036 -02 二月 2026 | 20:46:34,024 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 -02 二月 2026 | 20:46:35,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:587036 -02 二月 2026 | 20:46:35,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:36,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:36,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:46:36,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:46:36,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:46:36,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:46:36,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:46:36,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:46:36,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:46:36,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:46:36,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:46:36,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:46:37,097 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15400034 -02 二月 2026 | 20:46:37,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:46:37,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:46:37,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:46:37,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:46:37,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:46:38,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:46:39,372 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login -02 二月 2026 | 20:46:39,406 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 20:46:42,321 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:36 -02 二月 2026 | 20:46:42,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 20:46:45,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:587036 -02 二月 2026 | 20:46:45,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:45,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:45,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:46:45,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:46:45,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:46:46,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:46:46,439 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:46:46,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:46:46,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:46:46,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:46:46,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:46:46,644 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:46:46,892 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1311c966 -02 二月 2026 | 20:46:47,573 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:46:47,573 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:46:47,573 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:46:47,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:46:47,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:46:47,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:46:48,655 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 20:46:49,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 20:46:49,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 20:46:49,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:328509 -02 二月 2026 | 20:46:49,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:528242 -02 二月 2026 | 20:46:51,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:328509 -02 二月 2026 | 20:46:51,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:51,938 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:46:52,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:46:52,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:46:52,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:46:52,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:46:52,520 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:46:52,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:46:52,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:46:52,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:46:52,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:46:52,634 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:46:52,636 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 20:46:52,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:46:52,967 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1311c966 -02 二月 2026 | 20:46:53,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:46:53,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:46:53,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:46:53,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:46:53,818 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:46:54,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:46:55,357 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login -02 二月 2026 | 20:46:55,394 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 20:46:58,258 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:34 -02 二月 2026 | 20:46:58,361 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 20:47:01,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:587036 -02 二月 2026 | 20:47:01,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:47:01,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:47:01,680 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:47:01,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:47:01,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:47:02,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:47:02,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:47:02,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:47:02,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:47:02,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:47:02,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:47:02,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:47:02,631 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:47:02,634 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 20:47:02,660 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@332cd567 -02 二月 2026 | 20:47:03,510 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:47:03,510 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:47:03,510 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:47:03,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:47:03,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:47:03,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:47:04,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 20:47:05,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 20:47:05,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 20:47:05,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:296512 -02 二月 2026 | 20:47:05,639 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 -02 二月 2026 | 20:47:07,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:296512 -02 二月 2026 | 20:47:07,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:47:07,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:47:07,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:47:07,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:47:07,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:47:08,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:47:08,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:47:08,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:47:08,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 -02 二月 2026 | 20:47:08,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:47:08,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:47:08,461 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:47:08,667 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@332cd567 -02 二月 2026 | 20:47:09,283 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:47:09,283 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:47:09,283 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:47:09,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:47:09,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:47:09,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:47:10,879 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login -02 二月 2026 | 20:47:10,918 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 -02 二月 2026 | 20:47:13,856 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:33 -02 二月 2026 | 20:47:13,961 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect -02 二月 2026 | 20:47:17,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:587036 -02 二月 2026 | 20:47:17,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:47:17,838 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:47:17,955 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:47:17,955 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:47:17,955 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:47:18,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:47:18,459 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:47:18,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:47:18,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3294000 -02 二月 2026 | 20:47:18,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:47:18,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:47:18,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:47:19,149 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6a79b703 -02 二月 2026 | 20:47:19,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:47:19,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:47:19,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:47:19,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:47:19,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:47:20,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:47:20,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 -02 二月 2026 | 20:47:21,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin -02 二月 2026 | 20:47:21,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms -02 二月 2026 | 20:47:21,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:850686 -02 二月 2026 | 20:47:22,105 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:972225 -02 二月 2026 | 20:47:22,638 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: -com.robotcm.taurus.client.io.TSocketException - at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) - at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) - at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) - at java.lang.Thread.run(Thread.java:750) -02 二月 2026 | 20:47:22,640 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer -02 二月 2026 | 20:47:23,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:850686 -02 二月 2026 | 20:47:23,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:47:24,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] -02 二月 2026 | 20:47:24,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false -02 二月 2026 | 20:47:24,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false -02 二月 2026 | 20:47:24,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false -02 二月 2026 | 20:47:24,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false -02 二月 2026 | 20:47:24,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false -02 二月 2026 | 20:47:24,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false -02 二月 2026 | 20:47:24,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3294000 -02 二月 2026 | 20:47:24,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false -02 二月 2026 | 20:47:24,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false -02 二月 2026 | 20:47:24,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false -02 二月 2026 | 20:47:25,208 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6a79b703 -02 二月 2026 | 20:47:25,933 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] -02 二月 2026 | 20:47:25,933 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 -02 二月 2026 | 20:47:25,933 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 -02 二月 2026 | 20:47:25,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 -02 二月 2026 | 20:47:26,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] -02 二月 2026 | 20:47:26,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,632 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,632 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,632 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected -02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +04 二月 2026 | 00:00:10,078 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:629555 +04 二月 2026 | 00:00:10,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:00:10,329 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:00:10,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:00:10,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:00:11,263 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:00:12,011 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:00:12,011 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:00:12,011 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:160801 +04 二月 2026 | 00:00:12,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:00:13,795 | ERROR | Thread-180 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:00:13,824 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:00:14,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:160801 +04 二月 2026 | 00:00:14,041 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:00:14,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:00:14,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:00:14,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:00:17,845 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:00:38,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:857057 +04 二月 2026 | 00:00:38,749 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:00:38,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:00:39,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:00:39,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:00:39,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:00:40,579 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:00:40,579 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:00:40,579 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:117912 +04 二月 2026 | 00:00:40,983 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:00:42,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:117912 +04 二月 2026 | 00:00:42,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:00:42,839 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:00:42,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:00:42,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:00:42,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:00:43,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:00:43,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:00:43,557 | ERROR | Thread-184 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:00:43,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:00:43,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:00:43,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:00:43,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:00:43,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:00:43,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:00:43,958 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:00:44,714 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:00:44,714 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:00:44,714 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:00:44,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:00:44,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:00:44,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:00:48,392 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:01:09,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:904364 +04 二月 2026 | 00:01:09,216 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:01:09,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:01:09,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:01:09,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:01:10,245 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:01:10,978 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:01:10,978 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:01:10,978 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:625660 +04 二月 2026 | 00:01:11,337 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:01:13,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:625660 +04 二月 2026 | 00:01:13,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:01:13,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:01:13,511 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:01:13,511 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:01:13,511 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:01:13,563 | ERROR | Thread-189 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:01:13,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:01:13,900 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:01:14,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:01:14,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:01:14,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:01:14,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:01:14,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:01:14,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:01:14,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:01:15,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:01:15,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:01:15,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:01:15,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:01:15,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:01:15,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:01:19,103 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:01:43,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:602002 +04 二月 2026 | 00:01:43,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:01:43,565 | ERROR | Thread-193 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:01:43,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:01:43,625 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:01:43,724 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:01:43,724 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:01:43,724 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:01:44,149 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:01:44,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:01:44,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:01:44,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:01:44,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:01:44,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:01:44,445 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:01:44,688 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:01:45,469 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:01:45,469 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:01:45,469 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:01:45,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:01:45,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:01:45,712 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:01:46,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:01:47,186 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:01:47,186 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:01:47,186 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:491528 +04 二月 2026 | 00:01:47,559 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:01:49,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:491528 +04 二月 2026 | 00:01:49,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:01:49,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:01:49,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:01:49,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:01:49,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:01:50,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:01:50,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:01:50,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:01:50,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:01:50,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:01:50,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:01:50,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:01:50,752 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:01:51,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:01:51,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:01:51,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:01:51,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:01:51,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:01:51,985 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:01:55,379 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:02:13,575 | ERROR | Thread-198 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:02:13,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:02:24,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:602002 +04 二月 2026 | 00:02:24,485 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:02:24,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:02:24,829 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:02:24,886 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:02:25,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:02:26,421 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:02:26,421 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:02:26,421 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:561688 +04 二月 2026 | 00:02:26,876 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:02:28,525 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:561688 +04 二月 2026 | 00:02:28,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:02:28,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:02:28,904 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:02:28,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:02:28,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:02:29,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:02:29,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:02:29,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:02:29,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:02:29,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:02:29,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:02:29,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:02:29,957 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:02:30,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:02:30,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:02:30,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:02:30,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:02:30,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:02:30,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:02:34,373 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:02:53,586 | ERROR | Thread-203 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:02:53,677 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:02:58,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:529900 +04 二月 2026 | 00:02:58,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:02:58,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:02:59,105 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:02:59,105 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:02:59,105 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:02:59,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:02:59,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:02:59,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:02:59,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:02:59,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:02:59,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:02:59,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:03:00,011 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:03:00,852 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:03:00,852 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:03:00,852 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:03:00,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:03:00,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:03:01,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:03:01,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:03:02,845 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:03:02,845 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:03:02,845 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:183805 +04 二月 2026 | 00:03:03,204 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:03:04,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:183805 +04 二月 2026 | 00:03:04,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:03:05,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:03:05,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:03:05,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:03:05,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:03:05,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:03:05,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:03:05,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:03:05,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:03:05,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:03:05,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:03:05,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:03:06,172 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:03:06,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:03:06,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:03:06,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:03:06,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:03:06,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:03:07,076 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:03:10,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:03:33,596 | ERROR | Thread-207 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:03:33,684 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:03:38,272 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:807989 +04 二月 2026 | 00:03:38,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:03:38,495 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:03:38,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:03:38,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:03:38,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:03:39,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:03:39,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:03:39,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:03:39,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:03:39,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:03:39,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:03:39,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:03:39,558 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:03:40,326 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:03:40,326 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:03:40,326 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:03:40,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:03:40,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:03:40,562 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:03:41,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:03:42,177 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:03:42,177 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:03:42,177 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:270121 +04 二月 2026 | 00:03:42,525 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:03:44,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:270121 +04 二月 2026 | 00:03:44,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:03:44,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:03:44,736 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:03:44,772 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:03:48,255 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:04:13,616 | ERROR | Thread-211 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:04:13,693 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:04:17,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:544143 +04 二月 2026 | 00:04:17,879 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:04:18,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:04:18,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:04:18,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:04:18,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:04:18,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:04:18,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:04:18,598 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:04:18,598 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:04:18,598 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:04:18,598 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:04:18,732 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:04:18,977 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:04:19,726 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:04:19,726 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:04:19,726 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:04:19,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:04:19,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:04:20,017 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:04:20,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:04:21,506 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:04:21,506 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:04:21,506 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:888032 +04 二月 2026 | 00:04:21,913 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:04:23,576 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:888032 +04 二月 2026 | 00:04:23,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:04:23,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:04:23,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:04:23,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:04:27,457 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:04:43,616 | ERROR | Thread-215 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:04:43,640 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:04:59,308 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:510975 +04 二月 2026 | 00:04:59,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:04:59,526 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:04:59,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:04:59,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:04:59,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:04:59,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:05:00,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:05:00,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:05:00,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:05:00,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:05:00,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:05:00,242 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:05:00,451 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:05:01,228 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:05:01,228 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:05:01,228 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:05:01,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:05:01,302 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:05:01,444 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:05:02,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:05:02,875 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:05:02,875 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:05:02,875 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:894114 +04 二月 2026 | 00:05:03,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:05:04,819 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:894114 +04 二月 2026 | 00:05:04,859 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:05:05,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:05:05,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:05:05,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:05:05,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:05:05,521 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:05:05,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:05:05,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:05:05,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:05:05,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:05:05,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:05:05,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:05:06,063 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:05:06,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:05:06,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:05:06,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:05:06,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:05:06,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:05:06,989 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:05:10,460 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:05:33,629 | ERROR | Thread-219 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:05:33,673 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:05:44,216 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:904364 +04 二月 2026 | 00:05:44,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:05:44,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:05:44,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:05:44,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:05:44,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:05:44,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:05:44,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:05:45,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:05:45,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:05:45,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:05:45,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:05:45,200 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:05:45,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:05:46,087 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:05:46,087 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:05:46,087 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:05:46,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:05:46,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:05:46,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:05:46,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:05:47,710 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:05:47,712 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:05:47,712 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:917879 +04 二月 2026 | 00:05:48,106 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:05:49,817 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:917879 +04 二月 2026 | 00:05:49,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:05:50,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:05:50,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:05:50,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:05:53,676 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:06:13,657 | ERROR | Thread-224 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:06:13,683 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:06:25,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:835799 +04 二月 2026 | 00:06:25,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:06:25,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:06:26,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:06:26,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:06:26,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:06:26,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:06:26,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:06:26,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:06:26,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:06:26,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:06:26,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:06:26,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:06:26,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:06:27,527 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:06:27,527 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:06:27,527 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:06:27,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:06:27,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:06:27,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:06:28,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:06:29,295 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:06:29,295 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:06:29,295 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:757724 +04 二月 2026 | 00:06:29,591 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:06:31,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:757724 +04 二月 2026 | 00:06:31,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:06:31,333 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:06:31,444 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:06:31,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:06:34,987 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:06:53,655 | ERROR | Thread-231 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:06:53,681 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:07:09,942 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:875435 +04 二月 2026 | 00:07:09,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:07:10,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:07:10,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:07:10,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:07:10,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:07:10,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:07:11,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:07:11,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:07:11,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:07:11,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:07:11,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:07:11,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:07:11,574 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:07:12,244 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:07:12,244 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:07:12,244 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:07:12,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:07:12,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:07:12,487 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:07:13,168 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:07:13,878 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:07:13,878 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:07:13,878 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:334181 +04 二月 2026 | 00:07:14,273 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:07:16,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:334181 +04 二月 2026 | 00:07:16,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:07:16,263 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:07:16,397 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:07:16,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:07:19,902 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:07:43,672 | ERROR | Thread-236 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:07:43,714 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:07:58,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:529900 +04 二月 2026 | 00:07:58,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:07:58,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:07:58,762 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:07:58,762 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:07:58,762 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:07:59,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:07:59,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:07:59,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:07:59,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:07:59,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:07:59,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:07:59,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:07:59,586 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:08:00,228 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:08:00,228 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:08:00,228 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:08:00,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:08:00,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:08:00,436 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:08:01,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:08:01,871 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:08:01,872 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:08:01,872 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:379754 +04 二月 2026 | 00:08:02,179 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:08:03,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:379754 +04 二月 2026 | 00:08:03,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:08:04,059 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:08:04,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:08:04,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:08:04,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:08:04,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:08:04,582 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:08:04,619 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:08:04,619 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:08:04,619 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:08:04,619 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:08:04,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:08:04,981 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:08:05,655 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:08:05,655 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:08:05,655 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:08:05,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:08:05,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:08:05,867 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:08:09,350 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:08:33,680 | ERROR | Thread-240 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:08:33,775 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:08:48,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:471587 +04 二月 2026 | 00:08:48,178 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:08:48,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:08:48,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:08:48,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:08:48,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:08:48,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:08:48,997 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:08:49,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:08:49,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:08:49,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:08:49,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:08:49,178 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:08:49,408 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:08:50,066 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:08:50,066 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:08:50,066 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:08:50,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:08:50,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:08:50,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:08:51,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:08:51,868 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:08:51,868 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:08:51,868 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:819270 +04 二月 2026 | 00:08:52,186 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:08:53,773 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:819270 +04 二月 2026 | 00:08:53,806 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:08:53,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:08:54,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:08:54,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:08:57,600 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:09:13,690 | ERROR | Thread-245 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:09:13,786 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:09:35,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:827331 +04 二月 2026 | 00:09:35,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:09:36,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:09:36,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:09:36,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:09:36,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:09:36,538 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:09:36,679 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:09:36,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:09:36,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:09:36,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:09:36,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:09:36,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:09:37,088 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:09:37,782 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:09:37,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:09:37,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:09:37,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:09:37,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:09:37,986 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:09:38,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:09:39,392 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:09:39,392 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:09:39,392 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:463899 +04 二月 2026 | 00:09:39,822 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:09:41,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:463899 +04 二月 2026 | 00:09:41,346 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:09:41,526 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:09:41,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:09:41,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:09:41,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:09:42,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:09:42,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:09:42,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:09:42,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:09:42,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:09:42,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:09:42,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:09:42,602 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:09:43,440 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:09:43,440 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:09:43,440 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:09:43,474 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:09:43,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:09:43,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:09:47,142 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:10:03,714 | ERROR | Thread-250 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:10:03,722 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:10:31,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:690409 +04 二月 2026 | 00:10:31,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:10:31,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:10:31,650 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:10:31,650 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:10:31,650 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:10:31,977 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:10:32,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:10:32,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:10:32,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:10:32,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:10:32,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:10:32,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:10:32,570 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:10:33,246 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:10:33,248 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:10:33,248 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:10:33,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:10:33,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:10:33,485 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:10:34,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:10:34,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:10:34,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:10:34,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:628477 +04 二月 2026 | 00:10:35,267 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:10:36,949 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:628477 +04 二月 2026 | 00:10:36,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:10:37,178 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:10:37,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:10:37,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:10:37,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:10:37,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:10:37,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:10:37,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:10:37,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:10:37,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:10:37,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:10:38,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:10:38,315 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:10:39,021 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:10:39,021 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:10:39,021 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:10:39,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:10:39,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:10:39,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:10:42,727 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:11:03,721 | ERROR | Thread-255 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:11:03,726 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:11:25,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:243168 +04 二月 2026 | 00:11:25,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:11:25,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:11:25,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:11:25,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:11:25,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:11:26,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:11:26,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:11:26,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:11:26,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:11:26,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:11:26,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:11:26,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:11:26,711 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:11:27,356 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:11:27,356 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:11:27,356 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:11:27,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:11:27,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:11:27,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:11:28,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:11:28,958 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:11:28,958 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:11:28,958 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:622825 +04 二月 2026 | 00:11:29,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:11:30,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:622825 +04 二月 2026 | 00:11:30,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:11:31,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:11:31,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:11:31,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:11:34,787 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:11:53,733 | ERROR | Thread-260 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:11:53,785 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:12:26,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:541567 +04 二月 2026 | 00:12:26,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:12:26,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:12:26,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:12:26,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:12:26,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:12:26,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:12:26,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:12:26,975 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:12:26,975 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:12:26,975 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:12:26,975 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:12:27,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:12:27,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:12:28,068 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:12:28,068 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:12:28,068 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:12:28,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:12:28,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:12:28,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:12:29,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:12:30,060 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:12:30,060 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:12:30,060 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:610674 +04 二月 2026 | 00:12:30,435 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:12:32,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:610674 +04 二月 2026 | 00:12:32,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:12:32,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:12:32,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:12:32,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:12:36,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:12:53,754 | ERROR | Thread-265 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:12:53,796 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:13:23,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:870359 +04 二月 2026 | 00:13:23,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:13:23,975 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:13:24,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:13:24,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:13:24,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:13:24,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:13:24,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:13:24,640 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:13:24,640 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:13:24,640 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:13:24,640 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:13:24,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:13:25,014 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:13:25,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:13:25,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:13:25,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:13:25,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:13:25,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:13:25,900 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:13:26,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:13:27,324 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:13:27,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:13:27,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:565812 +04 二月 2026 | 00:13:27,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:13:29,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:565812 +04 二月 2026 | 00:13:29,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:13:29,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:13:29,690 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:13:29,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:13:33,186 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:13:53,768 | ERROR | Thread-270 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:13:53,779 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:14:24,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:541567 +04 二月 2026 | 00:14:24,894 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:14:25,128 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:14:25,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:14:25,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:14:25,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:14:25,588 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:14:25,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:14:25,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:14:25,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:14:25,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:14:25,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:14:25,975 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:14:26,203 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:14:26,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:14:26,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:14:26,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:14:26,896 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:14:26,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:14:27,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:14:27,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:14:28,502 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:14:28,502 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:14:28,502 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:491703 +04 二月 2026 | 00:14:28,860 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:14:30,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:491703 +04 二月 2026 | 00:14:30,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:14:30,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:14:30,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:14:30,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:14:34,254 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:14:53,785 | ERROR | Thread-275 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:14:53,857 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:15:23,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:395184 +04 二月 2026 | 00:15:23,869 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:15:24,172 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:15:24,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:15:24,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:15:24,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:15:24,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:15:24,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:15:24,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:15:24,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:15:24,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:15:24,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:15:24,949 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:15:25,197 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:15:25,973 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:15:25,973 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:15:25,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:15:26,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:15:26,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:15:26,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:15:26,835 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:15:27,519 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:15:27,519 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:15:27,519 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:133023 +04 二月 2026 | 00:15:27,849 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:15:29,521 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:133023 +04 二月 2026 | 00:15:29,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:15:29,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:15:29,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:15:29,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:15:33,254 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:15:53,805 | ERROR | Thread-280 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:15:53,860 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:16:28,380 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:651748 +04 二月 2026 | 00:16:28,416 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:16:28,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:16:28,687 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:16:28,687 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:16:28,687 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:16:28,999 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:16:29,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:16:29,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:16:29,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:16:29,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:16:29,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:16:29,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:16:29,609 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:16:30,366 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:16:30,366 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:16:30,366 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:16:30,418 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:16:30,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:16:30,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:16:31,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:16:32,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:16:32,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:16:32,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:128744 +04 二月 2026 | 00:16:32,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:16:34,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:128744 +04 二月 2026 | 00:16:34,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:16:34,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:16:34,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:16:34,433 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:16:37,873 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:17:03,572 | ERROR | Thread-285 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:17:03,602 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:17:45,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:941868 +04 二月 2026 | 00:17:45,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:17:45,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:17:45,799 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:17:45,799 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:17:45,799 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:17:46,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:17:46,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:17:46,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:17:46,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:17:46,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:17:46,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:17:46,398 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:17:46,715 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:17:47,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:17:47,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:17:47,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:17:47,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:17:47,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:17:47,679 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:17:48,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:17:49,173 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:17:49,173 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:17:49,173 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:749110 +04 二月 2026 | 00:17:49,623 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:17:51,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:749110 +04 二月 2026 | 00:17:51,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:17:51,450 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:17:51,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:17:51,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:17:51,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:17:51,904 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:17:52,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:17:52,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:17:52,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:17:52,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:17:52,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:17:52,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:17:52,423 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:17:53,156 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:17:53,156 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:17:53,156 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:17:53,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:17:53,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:17:53,378 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:17:56,777 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:18:13,599 | ERROR | Thread-289 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:18:13,669 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:18:56,315 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:544143 +04 二月 2026 | 00:18:56,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:18:56,549 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:18:56,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:18:56,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:18:56,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:18:56,963 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:18:57,063 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:18:57,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:18:57,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:18:57,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:18:57,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:18:57,345 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:18:57,569 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:18:58,215 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:18:58,216 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:18:58,216 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:18:58,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:18:58,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:18:58,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:18:59,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:18:59,867 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:18:59,867 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:18:59,867 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:591513 +04 二月 2026 | 00:19:00,208 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:19:01,886 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:591513 +04 二月 2026 | 00:19:01,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:19:02,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:19:02,227 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:19:02,227 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:19:02,227 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:19:02,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:19:02,668 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:19:02,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:19:02,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:19:02,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:19:02,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:19:02,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:19:03,079 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:19:03,807 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:19:03,807 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:19:03,807 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:19:03,846 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:19:03,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:19:04,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:19:07,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:19:23,609 | ERROR | Thread-295 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:19:23,638 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:20:09,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:807185 +04 二月 2026 | 00:20:09,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:20:09,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:20:09,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:20:09,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:20:10,172 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:20:10,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:20:10,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:20:10,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:373732 +04 二月 2026 | 00:20:11,166 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:20:12,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:373732 +04 二月 2026 | 00:20:12,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:20:13,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:20:13,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:20:13,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:20:13,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:20:13,593 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:20:13,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:20:13,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:20:13,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:20:13,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:20:13,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:20:13,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:20:14,108 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:20:14,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:20:14,886 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:20:14,886 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:20:14,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:20:14,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:20:15,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:20:18,546 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:20:43,632 | ERROR | Thread-299 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:20:43,678 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:21:20,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:169803 +04 二月 2026 | 00:21:20,908 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:21:21,098 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:21:21,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:21:21,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:21:21,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:21:21,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:21:21,662 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:21:21,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:21:21,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:21:21,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:21:21,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:21:21,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:21:22,169 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:21:22,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:21:22,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:21:22,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:21:22,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:21:22,940 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:21:23,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:21:23,881 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:21:24,732 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:21:24,732 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:21:24,732 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:985952 +04 二月 2026 | 00:21:25,074 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:21:26,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:985952 +04 二月 2026 | 00:21:26,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:21:26,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:21:27,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:21:27,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:21:27,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:21:27,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:21:27,450 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:21:27,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:21:27,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:21:27,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:21:27,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:21:27,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:21:27,910 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:21:28,648 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:21:28,649 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:21:28,649 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:21:28,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:21:28,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:21:29,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:21:32,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:21:53,647 | ERROR | Thread-305 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:21:53,652 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:22:40,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:904364 +04 二月 2026 | 00:22:40,196 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:22:40,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:22:40,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:22:40,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:22:40,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:22:40,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:22:40,948 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:22:40,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:22:40,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:22:40,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:22:40,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:22:41,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:22:41,384 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:22:42,115 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:22:42,115 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:22:42,115 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:22:42,156 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:22:42,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:22:42,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:22:43,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:22:44,195 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:22:44,196 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:22:44,196 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:552708 +04 二月 2026 | 00:22:44,530 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:22:46,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:552708 +04 二月 2026 | 00:22:46,076 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:22:46,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:22:46,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:22:46,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:22:46,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:22:46,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:22:46,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:22:46,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:22:46,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:22:46,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:22:46,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:22:47,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:22:47,289 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:22:47,947 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:22:47,947 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:22:47,947 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:22:47,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:22:48,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:22:48,172 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:22:51,737 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:23:13,670 | ERROR | Thread-310 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:23:13,755 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:24:01,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:836483 +04 二月 2026 | 00:24:01,638 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:24:01,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:24:01,977 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:24:01,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:24:01,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:24:02,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:24:02,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:24:02,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:24:02,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:24:02,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:24:02,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:24:02,672 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:24:02,898 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:24:03,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:24:03,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:24:03,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:24:03,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:24:03,629 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:24:03,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:24:04,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:24:05,254 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:24:05,254 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:24:05,254 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:703008 +04 二月 2026 | 00:24:05,622 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:24:07,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:703008 +04 二月 2026 | 00:24:07,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:24:07,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:24:07,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:24:07,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:24:07,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:24:08,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:24:08,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:24:08,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:24:08,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:24:08,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:24:08,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:24:08,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:24:08,685 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:24:09,418 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:24:09,418 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:24:09,418 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:24:09,454 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:24:09,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:24:09,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:24:13,065 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:24:33,692 | ERROR | Thread-315 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:24:33,779 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:25:25,003 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:542666 +04 二月 2026 | 00:25:25,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:25:25,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:25:25,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:25:25,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:25:25,986 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:25:26,834 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:25:26,834 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:25:26,834 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:994960 +04 二月 2026 | 00:25:27,179 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:25:28,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:994960 +04 二月 2026 | 00:25:28,737 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:25:28,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:25:29,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:25:29,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:25:29,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:25:29,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:25:29,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:25:29,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:25:29,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:25:29,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:25:29,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:25:29,632 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:25:29,841 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:25:30,556 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:25:30,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:25:30,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:25:30,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:25:30,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:25:30,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:25:34,282 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:25:53,722 | ERROR | Thread-320 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:25:53,778 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:26:52,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:879278 +04 二月 2026 | 00:26:52,948 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:26:53,196 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:26:53,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:26:53,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:26:54,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:26:54,947 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:26:54,947 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:26:54,947 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:789881 +04 二月 2026 | 00:26:55,314 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:26:56,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:789881 +04 二月 2026 | 00:26:56,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:26:57,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:26:57,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:26:57,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:26:57,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:26:57,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:26:57,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:26:57,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:26:57,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:26:57,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:26:57,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:26:58,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:26:58,261 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:26:58,939 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:26:58,939 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:26:58,939 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:26:58,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:26:59,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:26:59,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:27:02,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:27:23,742 | ERROR | Thread-325 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:27:23,827 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:28:24,773 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:529900 +04 二月 2026 | 00:28:24,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:28:25,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:28:25,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +04 二月 2026 | 00:28:25,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:28:25,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:28:26,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:28:26,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:28:26,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:448204 +04 二月 2026 | 00:28:27,131 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:28:28,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:448204 +04 二月 2026 | 00:28:28,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:28:28,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:28:28,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:28:28,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:28:28,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:28:29,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:28:29,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:28:29,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:28:29,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:28:29,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:28:29,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:28:29,625 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:28:29,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:28:30,474 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:28:30,474 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:28:30,474 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:28:30,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:28:30,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:28:30,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:28:34,206 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:28:53,777 | ERROR | Thread-331 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:28:53,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +04 二月 2026 | 00:29:51,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:243168 +04 二月 2026 | 00:29:51,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:29:51,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +04 二月 2026 | 00:29:51,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:29:51,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:29:51,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:29:52,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:29:52,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:29:52,412 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:29:52,412 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:29:52,412 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:29:52,412 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:29:52,576 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:29:52,807 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:29:53,492 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:29:53,492 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:29:53,492 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:29:53,525 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:29:53,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:29:53,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:29:54,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +04 二月 2026 | 00:29:55,354 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +04 二月 2026 | 00:29:55,354 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +04 二月 2026 | 00:29:55,354 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:805574 +04 二月 2026 | 00:29:55,699 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +04 二月 2026 | 00:29:57,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:805574 +04 二月 2026 | 00:29:57,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:29:57,525 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +04 二月 2026 | 00:29:57,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +04 二月 2026 | 00:29:57,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +04 二月 2026 | 00:29:57,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +04 二月 2026 | 00:29:57,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +04 二月 2026 | 00:29:58,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +04 二月 2026 | 00:29:58,095 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +04 二月 2026 | 00:29:58,095 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +04 二月 2026 | 00:29:58,095 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +04 二月 2026 | 00:29:58,095 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +04 二月 2026 | 00:29:58,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +04 二月 2026 | 00:29:58,475 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +04 二月 2026 | 00:29:59,180 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +04 二月 2026 | 00:29:59,181 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +04 二月 2026 | 00:29:59,181 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +04 二月 2026 | 00:29:59,214 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +04 二月 2026 | 00:29:59,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +04 二月 2026 | 00:29:59,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +04 二月 2026 | 00:30:02,859 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +04 二月 2026 | 00:30:23,791 | ERROR | Thread-337 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +04 二月 2026 | 00:30:23,856 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer diff --git a/robots/robotchangma/src/main/webapp/logs/web_main.log.2026-02-02 b/robots/robotchangma/src/main/webapp/logs/web_main.log.2026-02-02 new file mode 100644 index 0000000..3a53c5a --- /dev/null +++ b/robots/robotchangma/src/main/webapp/logs/web_main.log.2026-02-02 @@ -0,0 +1,14786 @@ +02 二月 2026 | 03:35:52,640 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 03:35:52,710 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 03:35:57,272 | INFO | pool-3-thread-1 | taurus.newRobot.AddRoomRobot | | 靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠靠{364881=0, 181048=0, 972225=0, 528242=0, 907904=0} +02 二月 2026 | 03:35:57,273 | INFO | pool-3-thread-1 | taurus.newRobot.AddRoomRobot | | iiiiiiiiiiiiiiiiiiiiiiiiiiiiiitrue +02 二月 2026 | 03:35:59,369 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] +02 二月 2026 | 03:36:00,350 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] +02 二月 2026 | 03:36:01,119 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] +02 二月 2026 | 03:36:02,375 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] +02 二月 2026 | 03:36:03,212 | INFO | pool-3-thread-1 | taurus.newRobot.jiqiren | | 所有机器人------[506792, 833434, 263443, 366684, 702682, 393626, 318369, 898704, 168417, 222174, 269104, 161303, 534945, 135686, 907904, 565915, 536853, 813512, 105246, 587607, 797820, 229402, 814489, 249926, 317325, 625141, 875627, 456351, 116977, 196737, 629423, 587365, 263211, 755028, 733813, 455105, 489370, 747170, 885229, 528242, 212822, 199211, 510159, 458528, 729707, 390577, 807922, 340350, 364881, 181048, 818783, 358235, 298815, 503059, 972225, 349401, 436813, 725378, 343850, 598580, 856264, 132788, 665588, 942284, 504700, 597575, 610511, 774428] +02 二月 2026 | 04:53:50,212 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 04:53:50,283 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 04:54:26,768 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 04:54:26,819 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:11:33,388 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:11:33,436 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:12:10,510 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:12:10,558 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:18:14,217 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:18:14,263 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:20:23,954 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:20:24,003 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:20:41,202 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:27:01,773 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:27:01,818 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:37:41,124 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:37:41,174 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:49:42,001 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:49:42,049 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:52:32,597 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:52:32,642 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:53:09,051 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:53:09,100 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:54:01,991 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:54:02,038 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:58:54,763 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:58:54,811 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 05:59:58,796 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 05:59:58,841 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:07:58,505 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:07:58,551 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:08:18,701 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:08:18,748 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:13:13,795 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:13:13,848 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:13:14,148 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:13:14,378 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:13:20,647 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:13:20,693 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:13:23,214 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:13:23,261 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:17:00,361 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:17:00,406 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:17:00,684 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:17:00,907 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:17:05,452 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:17:05,494 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:17:08,217 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:17:08,260 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:17:10,969 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:17:11,012 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:17:13,631 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:17:13,672 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:17,480 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:27:17,525 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:27:17,810 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:27:18,026 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:22,630 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:27:22,678 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:25,536 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:27:25,584 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:28,436 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:27:28,484 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:31,332 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:27:31,378 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:46,552 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:27:46,595 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:27:46,873 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:27:47,098 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:51,599 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:27:51,643 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:54,368 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:27:54,410 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:57,199 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:27:57,241 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:27:59,955 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:27:59,997 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:28:29,292 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:28:29,337 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:28:29,619 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:28:29,840 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:28:34,514 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:28:34,557 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:28:37,305 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:28:37,347 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:28:40,085 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:28:40,127 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:28:42,879 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:28:42,920 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:02,290 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:30:02,340 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:30:02,610 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:30:02,826 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:07,263 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:30:07,300 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:10,049 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:30:10,086 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:12,813 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:30:12,848 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:15,579 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:30:15,616 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:42,160 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:30:42,205 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:30:42,460 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:30:42,682 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:47,449 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:30:47,491 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:47,495 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:50,350 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:30:50,393 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:50,396 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:53,204 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:30:53,248 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:53,250 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:56,000 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:30:56,039 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:56,043 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:30:58,977 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,980 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,981 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,981 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,984 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,984 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,985 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,985 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,986 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,987 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,991 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,991 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,992 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,996 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,996 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:30:58,999 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:00,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:00,507 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:00,507 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:00,507 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:00,514 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:03,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:03,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:03,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:03,504 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:03,504 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:03,604 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:03,608 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:06,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:06,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:06,501 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:06,504 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:06,504 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:09,500 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:09,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:09,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:09,505 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:09,511 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:12,497 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:12,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:12,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:12,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:12,509 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:13,606 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:13,606 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:13,607 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:13,609 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:13,609 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:13,609 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:15,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:15,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:15,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:15,509 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:15,511 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:18,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:18,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:18,502 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:18,505 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:18,505 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:21,500 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:21,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:21,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:21,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:21,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:31:23,608 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,609 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,610 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,610 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,610 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,612 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,612 | ERROR | Thread-136 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,613 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,613 | ERROR | Thread-139 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,613 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,613 | ERROR | Thread-164 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,613 | ERROR | Thread-167 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,613 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,613 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,613 | ERROR | Thread-184 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,614 | ERROR | Thread-140 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,614 | ERROR | Thread-166 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,614 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,614 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,615 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,615 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,615 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,615 | ERROR | Thread-205 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,615 | ERROR | Thread-142 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,615 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,615 | ERROR | Thread-204 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,617 | ERROR | Thread-133 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,617 | ERROR | Thread-144 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,616 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,616 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,617 | ERROR | Thread-135 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,616 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,618 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,617 | ERROR | Thread-185 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,617 | ERROR | Thread-186 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,617 | ERROR | Thread-141 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,617 | ERROR | Thread-134 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,617 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,618 | ERROR | Thread-206 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,618 | ERROR | Thread-188 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,619 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,619 | ERROR | Thread-138 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,619 | ERROR | Thread-145 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,619 | ERROR | Thread-207 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,619 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,620 | ERROR | Thread-137 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,620 | ERROR | Thread-187 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,620 | ERROR | Thread-208 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,620 | ERROR | Thread-165 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,621 | ERROR | Thread-168 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,622 | ERROR | Thread-146 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,622 | ERROR | Thread-143 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,622 | ERROR | Thread-147 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,622 | ERROR | Thread-148 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:31:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:33:25,409 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:33:25,449 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:33:25,703 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:33:25,912 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:33:30,261 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:10 +02 二月 2026 | 06:33:30,351 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:33:30,392 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:30,392 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:33:33,041 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:10 +02 二月 2026 | 06:33:33,124 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:33:33,165 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:33:33,166 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:35,798 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:10 +02 二月 2026 | 06:33:35,879 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:33:35,919 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:33:35,923 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:38,558 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:10 +02 二月 2026 | 06:33:38,638 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:33:38,681 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:33:38,683 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,331 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:10 +02 二月 2026 | 06:33:41,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,453 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,455 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,460 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,460 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,460 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,462 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,463 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,463 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,464 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,464 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,468 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:41,468 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:43,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:43,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:43,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:43,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:43,751 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:46,742 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:46,745 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:46,745 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:46,750 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:46,750 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:49,740 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:49,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:49,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:49,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:49,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:52,741 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:52,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:52,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:52,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:52,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:53,654 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:33:53,655 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:33:53,656 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:33:53,656 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:33:53,656 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:33:53,659 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:33:55,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:55,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:55,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:55,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:55,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:58,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:58,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:58,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:58,745 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:33:58,748 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:01,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:01,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:01,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:01,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:01,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:03,406 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,407 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,408 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,409 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,409 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,409 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,409 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,410 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,411 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,411 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,413 | ERROR | Thread-139 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,413 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,415 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,415 | ERROR | Thread-183 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,415 | ERROR | Thread-184 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,417 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,417 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,417 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,417 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,417 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,417 | ERROR | Thread-136 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,419 | ERROR | Thread-186 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,419 | ERROR | Thread-143 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,419 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,420 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,435 | ERROR | Thread-141 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,435 | ERROR | Thread-146 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,435 | ERROR | Thread-166 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,435 | ERROR | Thread-187 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,435 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,436 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,436 | ERROR | Thread-163 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-134 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-138 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,437 | ERROR | Thread-144 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-185 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-135 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-140 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-133 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-142 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-164 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-147 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-137 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,438 | ERROR | Thread-167 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,437 | ERROR | Thread-165 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,436 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,438 | ERROR | Thread-145 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:03,438 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,438 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:03,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:04,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:04,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:04,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:04,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:04,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:07,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:07,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:07,748 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:07,752 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:07,755 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:10,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:10,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:10,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:10,750 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:10,753 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:13,412 | ERROR | Thread-203 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,412 | ERROR | Thread-243 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,413 | ERROR | Thread-226 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,413 | ERROR | Thread-224 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,414 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,414 | ERROR | Thread-223 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,420 | ERROR | Thread-227 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,418 | ERROR | Thread-247 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,418 | ERROR | Thread-245 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,418 | ERROR | Thread-206 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,416 | ERROR | Thread-205 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,416 | ERROR | Thread-246 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,416 | ERROR | Thread-225 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,416 | ERROR | Thread-207 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,416 | ERROR | Thread-204 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,416 | ERROR | Thread-244 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:34:13,416 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,427 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,427 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,427 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,427 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:34:13,740 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:13,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:13,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:13,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:13,752 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:34,368 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:34:34,408 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:34:34,685 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:34:34,897 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:34:39,188 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:11 +02 二月 2026 | 06:34:39,277 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:34:39,318 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:34:39,322 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:41,835 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:11 +02 二月 2026 | 06:34:41,917 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:34:41,959 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:41,959 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:34:44,485 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:11 +02 二月 2026 | 06:34:44,568 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:34:44,609 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:34:44,614 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:47,136 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:11 +02 二月 2026 | 06:34:47,216 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:34:47,256 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:47,256 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:34:49,943 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:11 +02 二月 2026 | 06:34:50,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,117 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,121 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,128 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,128 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,128 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,131 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,131 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,131 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,134 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,134 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,137 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,183 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:50,183 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:51,106 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:51,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:51,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:51,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:51,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:51,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:52,727 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:52,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:53,723 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:53,731 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:53,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:55,726 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:55,732 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:56,726 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:56,728 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:56,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:58,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:58,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:58,733 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:59,723 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:34:59,726 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:01,725 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:02,788 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:02,788 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:02,790 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:02,799 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:03,429 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:35:03,429 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:35:03,429 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:35:03,429 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:35:03,432 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:35:03,432 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:35:03,433 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:35:03,433 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:35:04,731 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:04,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:04,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:04,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:35:04,734 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:36:28,923 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:36:28,964 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:36:29,210 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:36:29,417 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:36:33,796 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:12 +02 二月 2026 | 06:37:13,852 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:37:13,892 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:37:14,193 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:37:14,435 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:37:18,939 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:13 +02 二月 2026 | 06:38:06,057 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:38:06,100 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:38:06,371 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:38:06,602 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:38:10,646 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:14 +02 二月 2026 | 06:38:39,535 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:38:39,582 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:38:39,884 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:38:40,107 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:38:44,434 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:15 +02 二月 2026 | 06:39:51,285 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:39:51,326 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:39:51,594 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:39:51,805 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:39:56,274 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:16 +02 二月 2026 | 06:39:56,360 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:39:56,401 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:39:56,406 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:39:58,893 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:12 +02 二月 2026 | 06:39:58,975 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:39:59,017 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:39:59,023 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:40:01,507 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:12 +02 二月 2026 | 06:40:01,588 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:40:01,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:40:01,628 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:40:04,113 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:12 +02 二月 2026 | 06:40:04,193 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:40:04,232 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:40:04,233 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:40:06,721 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:12 +02 二月 2026 | 06:40:06,841 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:40:13,516 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:40:13,519 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:40:23,518 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:40:23,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:40:23,521 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:40:23,522 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:40:23,523 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:40:23,523 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:40:23,524 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:40:23,526 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:42:24,211 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:42:24,254 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:42:24,505 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:42:24,718 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:42:30,104 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:42:30,143 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:42:30,412 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:42:30,625 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:42:35,263 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:17 +02 二月 2026 | 06:42:35,352 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:42:35,393 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:42:35,396 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:42:37,879 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:13 +02 二月 2026 | 06:42:37,963 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:42:38,004 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:42:38,004 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:42:40,523 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:13 +02 二月 2026 | 06:42:40,605 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:42:40,644 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:42:40,646 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:42:43,161 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:13 +02 二月 2026 | 06:42:43,242 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:42:43,283 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:42:43,286 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:42:45,800 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:13 +02 二月 2026 | 06:42:45,928 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:42:53,560 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:42:53,564 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:43:03,560 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:43:03,560 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:43:03,562 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:43:03,562 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:43:03,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:43:03,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:43:03,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:43:03,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:44:26,630 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:44:26,671 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:44:26,951 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:44:27,167 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:44:31,193 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:18 +02 二月 2026 | 06:44:31,275 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:44:31,313 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:44:31,316 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:44:33,752 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:14 +02 二月 2026 | 06:44:33,828 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:44:33,865 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:44:33,873 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:44:36,294 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:14 +02 二月 2026 | 06:44:36,367 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:44:36,404 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:44:36,415 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:44:38,847 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:14 +02 二月 2026 | 06:44:38,920 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:44:38,956 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:44:38,959 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:44:41,401 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:14 +02 二月 2026 | 06:44:41,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:45:44,654 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:45:44,694 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:45:44,990 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:45:45,205 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:45:49,456 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:19 +02 二月 2026 | 06:45:49,533 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:45:49,569 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:45:49,581 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:45:52,032 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:15 +02 二月 2026 | 06:45:52,105 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:45:52,142 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:45:52,144 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:45:54,613 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:15 +02 二月 2026 | 06:45:54,684 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:45:54,719 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:45:54,733 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:45:57,450 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:15 +02 二月 2026 | 06:45:57,520 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:45:57,554 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:45:57,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:46:00,046 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:15 +02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:46:00,119 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:46:00,164 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:46:13,614 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:46:13,616 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:46:13,618 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:46:13,618 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:46:13,619 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:46:13,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:46:13,621 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:46:13,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:46:23,619 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:46:23,621 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:49:10,555 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:49:10,596 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:49:10,874 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:49:11,087 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:49:15,445 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:20 +02 二月 2026 | 06:51:55,373 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:51:55,413 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:51:55,674 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:51:55,894 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:52:00,661 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:21 +02 二月 2026 | 06:52:00,750 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:52:00,791 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:52:00,800 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:52:03,467 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:16 +02 二月 2026 | 06:52:03,545 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:52:03,585 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:52:03,590 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:52:06,201 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:16 +02 二月 2026 | 06:52:06,278 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:52:06,316 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:52:06,323 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:52:08,923 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:16 +02 二月 2026 | 06:52:08,999 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:52:09,038 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:52:09,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:52:11,661 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:16 +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:11,775 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:52:13,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:13,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:13,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:13,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:16,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:19,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:22,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:23,466 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:52:23,467 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:52:23,468 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:52:23,470 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:52:23,470 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:52:23,470 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:52:25,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:25,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:25,721 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:52:28,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:53:43,156 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:53:43,196 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:53:43,448 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:53:43,666 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:53:48,393 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:22 +02 二月 2026 | 06:53:48,468 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:53:48,502 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:53:48,513 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:53:51,125 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:17 +02 二月 2026 | 06:53:51,193 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:53:51,228 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:53:51,239 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:53:53,839 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:17 +02 二月 2026 | 06:53:53,906 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:53:53,939 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:53:53,947 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:53:56,553 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:17 +02 二月 2026 | 06:53:56,621 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:53:56,654 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:53:56,667 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:53:59,267 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:17 +02 二月 2026 | 06:53:59,334 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:53:59,335 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:53:59,335 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:53:59,335 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:53:59,335 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:53:59,379 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:54:13,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:13,497 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:13,498 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:13,498 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:13,501 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:54:13,501 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:54:13,501 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:54:13,502 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:13,503 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:54:19,449 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:19,449 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:22,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:22,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:22,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:22,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:23,504 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:23,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:54:25,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:25,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:25,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:25,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:28,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:31,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:33,502 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:33,502 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:33,505 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:54:34,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:34,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:34,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:37,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:40,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:43,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:43,506 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:43,509 | ERROR | Thread-55 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:43,512 | ERROR | Thread-57 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:46,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:46,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:49,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:52,448 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:53,509 | ERROR | Thread-60 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:53,510 | ERROR | Thread-61 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:54:55,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:55,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:54:55,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:01,853 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:55:01,896 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:55:02,153 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:55:02,356 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:55:06,942 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:23 +02 二月 2026 | 06:55:07,030 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:55:07,070 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:55:07,074 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:55:09,868 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:18 +02 二月 2026 | 06:55:09,951 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:55:09,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:55:09,993 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:55:12,779 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:18 +02 二月 2026 | 06:55:12,860 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:55:12,901 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:55:12,904 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:55:15,677 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:18 +02 二月 2026 | 06:55:15,758 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:55:15,799 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:55:15,801 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:55:18,576 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:18 +02 二月 2026 | 06:55:18,657 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,657 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,658 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,659 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:18,704 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:55:20,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:20,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:20,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:20,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:23,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:23,522 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:55:23,529 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:55:26,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:26,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:26,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:26,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:29,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:29,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:29,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:29,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:32,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:32,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:32,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:32,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:33,519 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:55:33,519 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:55:33,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:55:33,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:55:33,524 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:55:33,525 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:55:35,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:35,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:38,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:38,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:38,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:41,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:41,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:41,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:41,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:43,525 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:55:43,526 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:55:44,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:44,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:44,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:44,152 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:47,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:50,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:53,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:53,524 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:55:53,527 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:55:53,532 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:55:56,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:56,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:56,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:55:59,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:02,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:03,527 | ERROR | Thread-55 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:56:03,528 | ERROR | Thread-56 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:56:03,535 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:56:05,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:05,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:08,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:11,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:13,532 | ERROR | Thread-61 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:56:13,534 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:56:14,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:14,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:14,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:17,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 06:56:25,859 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:56:25,898 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:56:26,187 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:56:26,404 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:56:30,854 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:24 +02 二月 2026 | 06:56:30,936 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:56:30,974 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:56:30,977 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:33,502 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:19 +02 二月 2026 | 06:56:33,579 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:56:33,617 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:56:33,628 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:36,437 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:19 +02 二月 2026 | 06:56:36,512 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:56:36,548 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:56:36,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:39,102 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:19 +02 二月 2026 | 06:56:39,176 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:56:39,213 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:56:39,222 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,726 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:19 +02 二月 2026 | 06:56:41,840 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,843 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,844 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,844 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,844 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,847 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,847 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,847 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,847 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,849 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,849 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,849 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,849 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,853 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,853 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,854 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,854 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,854 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,855 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,855 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,855 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:41,858 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:47,227 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:47,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:47,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:47,236 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:47,241 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:53,224 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:53,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:53,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:53,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:53,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:53,544 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:56:53,546 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:56:53,545 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:56:53,547 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:56:53,548 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:56:53,550 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:56:59,231 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:59,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:59,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:59,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:56:59,240 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:03,544 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,545 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,545 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,545 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,546 | ERROR | Thread-148 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,547 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,547 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,548 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,546 | ERROR | Thread-117 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,548 | ERROR | Thread-150 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,547 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,548 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,548 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,549 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,549 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,549 | ERROR | Thread-149 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,549 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,550 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,550 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,551 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,551 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,551 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,551 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,552 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,552 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,553 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,554 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,554 | ERROR | Thread-151 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,555 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,555 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,555 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,555 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,556 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,556 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:03,558 | ERROR | Thread-152 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:03,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:05,225 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:05,225 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:05,231 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:05,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:05,238 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:11,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:11,235 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:11,235 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:11,240 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:11,242 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:13,549 | ERROR | Thread-168 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:13,549 | ERROR | Thread-171 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:13,550 | ERROR | Thread-172 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:13,550 | ERROR | Thread-169 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:13,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:13,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:13,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:13,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:13,557 | ERROR | Thread-170 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:13,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:17,228 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:17,228 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:17,231 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:17,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:17,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:23,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:23,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:23,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:23,233 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:23,236 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:23,552 | ERROR | Thread-188 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,552 | ERROR | Thread-209 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,552 | ERROR | Thread-189 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:23,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:23,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:23,553 | ERROR | Thread-208 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,553 | ERROR | Thread-210 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,555 | ERROR | Thread-190 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:23,556 | ERROR | Thread-211 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:23,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:23,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:23,558 | ERROR | Thread-212 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,558 | ERROR | Thread-192 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:23,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:23,560 | ERROR | Thread-191 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:57:23,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:57:29,229 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:29,231 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:29,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:29,234 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:29,237 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:36,728 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:57:36,769 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:57:37,077 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:57:37,313 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:57:41,978 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:25 +02 二月 2026 | 06:57:42,061 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:57:42,099 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:57:42,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:45,000 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:20 +02 二月 2026 | 06:57:45,078 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:57:45,116 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:57:45,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:48,007 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:20 +02 二月 2026 | 06:57:48,081 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:57:48,119 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:57:48,127 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:51,004 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:20 +02 二月 2026 | 06:57:51,079 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:57:51,116 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:57:51,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:53,987 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:20 +02 二月 2026 | 06:57:54,103 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,105 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,105 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,105 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,105 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,106 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,106 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,106 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,110 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,110 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,110 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,110 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,111 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,111 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,111 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:54,114 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:58,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:58,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:58,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:58,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:57:58,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:03,566 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:03,569 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:03,572 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:03,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:04,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:04,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:04,120 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:04,123 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:04,126 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:10,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:10,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:10,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:10,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:10,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:13,566 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,566 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,566 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,567 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,567 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,568 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,568 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,568 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,569 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,569 | ERROR | Thread-117 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,569 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,569 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,569 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,570 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,570 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,570 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,571 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,572 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,572 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,573 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,574 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,574 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,575 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,575 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,576 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,576 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,577 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,577 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,577 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:13,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:16,120 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:16,120 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:16,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:16,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:16,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:22,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:22,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:22,118 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:22,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:22,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:23,570 | ERROR | Thread-169 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,570 | ERROR | Thread-171 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,571 | ERROR | Thread-148 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,572 | ERROR | Thread-149 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,573 | ERROR | Thread-150 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,573 | ERROR | Thread-151 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:23,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:23,574 | ERROR | Thread-168 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,575 | ERROR | Thread-170 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,575 | ERROR | Thread-152 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:23,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:23,579 | ERROR | Thread-172 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:23,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:23,591 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:28,116 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:28,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:28,122 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:28,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:28,128 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:33,573 | ERROR | Thread-188 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,574 | ERROR | Thread-191 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,574 | ERROR | Thread-211 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,575 | ERROR | Thread-189 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,575 | ERROR | Thread-208 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,575 | ERROR | Thread-190 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:33,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:33,576 | ERROR | Thread-210 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,577 | ERROR | Thread-209 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,577 | ERROR | Thread-192 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:33,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:33,578 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:33,580 | ERROR | Thread-212 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 06:58:33,581 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 06:58:34,121 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:34,121 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:34,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:34,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:58:34,129 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:33,329 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 06:59:33,369 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 06:59:33,631 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 06:59:33,851 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:59:38,103 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:26 +02 二月 2026 | 06:59:38,188 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 06:59:38,229 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:59:38,232 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:40,593 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:21 +02 二月 2026 | 06:59:40,673 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 06:59:40,713 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:59:40,720 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:43,074 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:21 +02 二月 2026 | 06:59:43,153 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 06:59:43,191 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:59:43,195 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:45,566 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:21 +02 二月 2026 | 06:59:45,645 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 06:59:45,685 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 06:59:45,689 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,056 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:21 +02 二月 2026 | 06:59:48,176 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,177 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,182 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,190 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,190 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,190 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:48,190 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:51,669 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:51,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:51,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:51,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:51,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:57,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:57,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:57,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:57,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 06:59:57,679 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:03,600 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:00:03,600 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:00:03,602 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:00:03,604 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:00:03,604 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:00:03,604 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:00:03,604 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:00:03,607 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:00:03,670 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:03,670 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:03,673 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:03,675 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:03,680 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:09,669 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:09,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:09,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:09,677 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:09,677 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:46,435 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 07:00:46,478 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 07:00:46,712 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 07:00:46,930 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:00:51,165 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:27 +02 二月 2026 | 07:00:51,242 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 07:00:51,278 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:00:51,287 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:53,800 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:22 +02 二月 2026 | 07:00:53,874 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 07:00:53,910 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:00:53,920 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:56,441 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:22 +02 二月 2026 | 07:00:56,511 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 07:00:56,546 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:00:56,550 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:00:59,065 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:22 +02 二月 2026 | 07:00:59,135 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 07:00:59,169 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:00:59,178 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,689 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:22 +02 二月 2026 | 07:01:01,797 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,798 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,801 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,802 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,814 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,814 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:01,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:02,814 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:07,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:07,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:07,761 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:07,761 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:07,766 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:13,622 | ERROR | Thread-38 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:13,624 | ERROR | Thread-34 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:13,624 | ERROR | Thread-30 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:13,625 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:13,625 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:13,625 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:13,749 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:13,752 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:13,755 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:13,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:13,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:19,756 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:19,759 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:19,762 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:19,765 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:19,765 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:23,621 | ERROR | Thread-110 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,621 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,622 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,622 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,623 | ERROR | Thread-109 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,623 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,625 | ERROR | Thread-117 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,625 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,626 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,627 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,627 | ERROR | Thread-42 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,627 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,628 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,628 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,629 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,629 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,630 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,630 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,630 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,632 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,632 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,633 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:23,633 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:01:23,636 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:01:25,753 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:25,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:25,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:25,761 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:25,763 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:39,950 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 07:01:39,992 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 07:01:40,274 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 07:01:40,493 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:01:45,283 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:28 +02 二月 2026 | 07:01:45,363 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 07:01:45,404 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:45,404 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:01:48,147 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:23 +02 二月 2026 | 07:01:48,223 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 07:01:48,261 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:48,261 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:01:51,001 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:23 +02 二月 2026 | 07:01:51,075 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 07:01:51,112 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:01:51,117 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:53,849 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:23 +02 二月 2026 | 07:01:53,922 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 07:01:53,958 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:01:53,962 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,696 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:23 +02 二月 2026 | 07:01:56,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,809 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,812 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,813 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,815 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,818 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,819 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,819 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,819 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,820 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,823 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,823 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:01:56,826 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:01,311 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:01,313 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:01,319 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:01,319 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:01,326 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:03,637 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:02:03,641 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:02:07,311 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:07,314 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:07,317 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:07,317 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:07,321 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:16,086 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 07:02:16,126 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 07:02:16,356 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 07:02:16,557 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:02:20,614 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:29 +02 二月 2026 | 07:02:20,702 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 07:02:20,744 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:02:20,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:23,240 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:24 +02 二月 2026 | 07:02:23,323 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 07:02:23,364 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:02:23,376 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:25,849 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:24 +02 二月 2026 | 07:02:25,929 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 07:02:25,969 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:25,971 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:02:28,444 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:24 +02 二月 2026 | 07:02:28,524 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 07:02:28,566 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:02:28,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,039 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:24 +02 二月 2026 | 07:02:31,162 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,162 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,163 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,163 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,163 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,167 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,167 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,167 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,167 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,168 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,168 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,168 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,173 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:31,176 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:34,396 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:34,399 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:34,402 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:34,405 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:34,409 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:40,395 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:40,398 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:40,401 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:40,401 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:02:40,401 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:04:59,663 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 07:04:59,702 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 07:05:00,002 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 07:05:00,223 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:05:04,401 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:30 +02 二月 2026 | 07:05:04,488 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 07:05:04,528 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:05:04,536 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:07,049 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:25 +02 二月 2026 | 07:05:07,132 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 07:05:07,174 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:05:07,176 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:09,687 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:25 +02 二月 2026 | 07:05:09,768 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 07:05:09,808 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:05:09,812 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:12,325 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:25 +02 二月 2026 | 07:05:12,405 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 07:05:12,445 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:05:12,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:14,969 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:25 +02 二月 2026 | 07:05:15,091 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,092 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,092 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,092 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,095 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,095 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,096 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,099 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,099 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,101 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,101 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,101 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,101 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,102 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,102 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:15,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:21,043 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:21,043 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:21,046 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:21,046 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:21,049 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:23,445 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:23,445 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:23,448 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:23,448 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:27,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:27,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:27,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:27,048 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:27,048 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:33,042 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:33,044 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:33,044 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:33,047 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:33,050 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:05:33,442 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,442 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,443 | ERROR | Thread-117 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,444 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,444 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,444 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,444 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,445 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,445 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,445 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,445 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,445 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,446 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,446 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,447 | ERROR | Thread-116 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,447 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,448 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,448 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,448 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,449 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,449 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,449 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,449 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,449 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,450 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,451 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,451 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,452 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,452 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,452 | ERROR | Thread-125 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,453 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,453 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,453 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:05:33,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:06:13,312 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 07:06:13,358 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 07:06:13,617 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 07:06:13,829 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:06:18,063 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:31 +02 二月 2026 | 07:06:18,152 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 07:06:18,195 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:06:18,197 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:06:20,845 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:26 +02 二月 2026 | 07:06:20,929 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 07:06:20,970 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:06:20,974 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:06:26,934 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 07:06:26,974 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 07:06:27,268 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 07:06:27,505 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:06:31,829 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:32 +02 二月 2026 | 07:06:31,920 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 07:06:31,961 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:06:31,963 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:06:34,494 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:27 +02 二月 2026 | 07:06:34,575 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 07:06:34,613 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:06:34,619 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:06:37,147 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:26 +02 二月 2026 | 07:06:37,227 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 07:06:37,269 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:06:37,271 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:06:39,782 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:26 +02 二月 2026 | 07:06:39,862 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 07:06:39,905 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:06:39,907 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:06:42,425 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:26 +02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,506 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:42,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:06:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:53,465 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:06:53,465 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:06:53,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:06:53,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:06:53,470 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:06:53,473 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:06:54,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:54,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:06:57,311 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:00,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:03,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:03,468 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:03,476 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:06,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:06,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:06,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:09,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:12,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:13,472 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:13,472 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:13,476 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:15,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:15,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:18,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:21,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:23,476 | ERROR | Thread-57 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:23,479 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:24,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:24,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:24,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:27,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:30,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:33,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:33,477 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:33,479 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:33,482 | ERROR | Thread-64 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:36,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:36,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:39,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:42,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:43,483 | ERROR | Thread-67 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:43,485 | ERROR | Thread-68 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:45,268 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:48,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:51,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:53,486 | ERROR | Thread-73 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:53,486 | ERROR | Thread-74 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:53,489 | ERROR | Thread-75 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:07:54,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:54,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:07:57,269 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:00,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:03,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:08:03,487 | ERROR | Thread-78 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:08:03,492 | ERROR | Thread-79 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:11:28,282 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 07:11:28,320 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 07:11:28,582 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 07:11:28,796 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:11:33,336 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:33 +02 二月 2026 | 07:11:33,420 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 07:11:33,460 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:11:33,465 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:11:36,204 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:28 +02 二月 2026 | 07:11:36,284 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 07:11:36,325 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:11:36,332 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:11:39,066 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:27 +02 二月 2026 | 07:11:39,143 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 07:11:39,183 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:11:39,189 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:11:41,923 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:27 +02 二月 2026 | 07:11:42,001 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 07:11:42,041 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:11:42,044 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:11:44,784 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:27 +02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,863 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:44,911 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:11:46,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:46,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:46,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:46,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:49,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:52,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:53,552 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:11:53,555 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:11:53,557 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:11:53,557 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:11:55,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:55,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:55,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:58,580 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:58,580 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:11:58,580 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:01,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:01,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:01,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:01,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:03,553 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:12:03,555 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:12:03,555 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:12:03,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:12:03,558 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:12:03,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:12:04,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:04,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:07,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:07,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:07,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:10,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:13,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:16,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:19,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:22,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:23,560 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:12:23,561 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:12:23,562 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:12:23,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:12:25,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:25,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:12:28,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:32:56,110 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 07:32:56,151 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 07:32:56,430 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 07:32:56,648 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:33:00,783 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:34 +02 二月 2026 | 07:33:00,901 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:33:00,990 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 07:33:01,026 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:42:40,304 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 07:42:40,343 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 07:42:40,608 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 07:42:40,817 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:42:44,666 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:35 +02 二月 2026 | 07:42:44,815 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:42:45,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:42:46,651 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 07:42:46,698 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:42:49,016 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:29 +02 二月 2026 | 07:42:49,152 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:42:49,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:42:50,540 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 07:42:50,587 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:42:52,903 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:28 +02 二月 2026 | 07:42:53,037 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:42:53,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:42:54,420 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 07:42:54,468 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:42:56,777 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:28 +02 二月 2026 | 07:42:56,915 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:42:57,474 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:42:58,307 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 07:42:58,354 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 07:43:00,685 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:28 +02 二月 2026 | 07:43:00,821 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 07:43:01,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:02,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:03,571 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:43:03,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:43:04,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:05,665 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:07,091 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:08,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:09,943 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:11,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:12,190 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:43:12,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:13,575 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:43:13,575 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:43:13,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:43:13,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:43:13,578 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 07:43:13,580 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 07:43:14,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:15,043 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 07:43:15,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:17,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:18,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 07:43:19,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 16:50:32,844 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 16:50:32,885 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 16:50:33,199 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 16:50:33,415 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 16:50:37,917 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:36 +02 二月 2026 | 16:50:38,048 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 16:50:40,705 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:50:40,776 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 16:50:40,846 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 16:50:43,551 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:30 +02 二月 2026 | 16:50:43,672 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 16:50:45,509 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:50:45,549 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 16:50:45,588 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 16:50:48,615 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:29 +02 二月 2026 | 16:50:48,745 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 16:50:50,575 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:50:50,614 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 16:50:50,654 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 16:50:53,367 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:29 +02 二月 2026 | 16:50:53,498 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 16:50:54,093 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 16:50:54,097 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 16:50:55,331 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:50:55,371 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 16:50:55,411 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 16:50:58,127 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:29 +02 二月 2026 | 16:50:58,246 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 16:51:00,084 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:01,968 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:04,014 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:04,096 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 16:51:04,098 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 16:51:05,827 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:07,635 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:09,448 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:09,487 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 16:51:11,260 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:13,100 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:14,101 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 16:51:14,102 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 16:51:14,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 16:51:14,107 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 16:51:14,905 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:16,723 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:16,763 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 16:51:18,531 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:18,572 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 16:51:20,334 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:22,226 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:24,041 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:24,100 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 16:51:24,103 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 16:51:24,107 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 16:51:24,109 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 16:51:25,861 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:27,675 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:29,478 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:29,518 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 16:51:31,306 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:31,345 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 16:51:33,121 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:33,163 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 16:51:34,941 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:36,761 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:36,800 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 16:51:38,574 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 16:51:38,613 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 17:02:41,947 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 17:02:41,991 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 17:02:42,298 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 17:02:42,515 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 17:02:47,094 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:37 +02 二月 2026 | 17:02:47,238 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 17:02:49,367 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:02:49,408 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 17:02:49,449 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 17:02:52,188 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:31 +02 二月 2026 | 17:02:52,313 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 17:02:53,964 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:02:54,001 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 17:02:54,042 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 17:02:56,775 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:30 +02 二月 2026 | 17:02:56,906 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 17:02:58,543 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:02:58,580 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 17:02:58,621 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 17:03:01,365 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:30 +02 二月 2026 | 17:03:01,491 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 17:03:03,131 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:03,167 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 17:03:03,208 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 17:03:04,056 | ERROR | Thread-29 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 17:03:04,060 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 17:03:05,943 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:30 +02 二月 2026 | 17:03:06,068 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 17:03:07,703 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:07,779 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 17:03:09,393 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:11,081 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:12,760 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:14,050 | ERROR | Thread-33 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 17:03:14,055 | ERROR | Thread-37 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 17:03:14,435 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:16,122 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:16,159 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 17:03:17,823 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:19,746 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:21,501 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:21,539 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 17:03:23,519 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:23,556 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 17:03:24,054 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 17:03:24,057 | ERROR | Thread-41 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 17:03:24,059 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 17:03:25,219 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:26,910 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:26,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 17:03:28,900 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:28,937 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 17:03:30,592 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:32,265 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:33,935 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:33,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 17:03:34,056 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 17:03:35,619 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:37,294 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:37,331 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 17:03:38,962 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:03:38,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 17:05:18,612 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 17:05:18,668 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 17:05:18,985 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 17:05:19,200 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 17:05:23,531 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:38 +02 二月 2026 | 17:05:23,668 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 17:05:26,019 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:05:26,059 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 17:05:26,099 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 17:05:28,538 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:32 +02 二月 2026 | 17:05:28,665 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 17:05:52,780 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 17:05:52,835 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 17:05:53,171 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 17:05:53,400 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 17:05:57,655 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:39 +02 二月 2026 | 17:05:57,789 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 17:06:14,109 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 17:06:14,113 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 17:59:50,597 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 17:59:54,078 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 17:59:54,125 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 17:59:54,449 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 17:59:54,670 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 17:59:58,911 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:40 +02 二月 2026 | 17:59:59,045 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:04:14,174 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:14,174 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 18:04:14,178 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 18:04:16,562 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 18:04:16,614 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 18:04:16,974 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 18:04:17,209 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:04:21,412 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:41 +02 二月 2026 | 18:04:21,547 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:04:23,697 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:23,747 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 18:04:23,798 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:04:26,189 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:33 +02 二月 2026 | 18:04:26,319 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:04:28,037 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:28,087 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 18:04:28,128 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:04:30,508 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:31 +02 二月 2026 | 18:04:30,643 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:04:32,310 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:32,359 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 18:04:32,400 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:04:34,785 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:31 +02 二月 2026 | 18:04:34,913 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:04:36,591 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:36,639 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 18:04:36,681 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:04:39,054 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:31 +02 二月 2026 | 18:04:39,191 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:04:41,024 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:43,452 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:44,088 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 18:04:44,089 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 18:04:44,093 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 18:04:44,093 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 18:04:45,180 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:46,904 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:48,629 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:50,361 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:52,127 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:53,868 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:54,089 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 18:04:54,091 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 18:04:54,092 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 18:04:54,094 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 18:04:55,598 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:57,324 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +02 二月 2026 | 18:04:57,374 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 18:09:01,131 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 18:09:01,185 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 18:09:01,470 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 18:09:01,676 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:09:06,422 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:42 +02 二月 2026 | 18:09:06,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:09:09,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:627364 +02 二月 2026 | 18:09:09,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 18:09:09,546 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 18:09:09,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 18:09:09,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 18:09:09,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 18:09:10,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 18:09:10,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 18:09:10,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 18:09:10,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 18:09:10,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 18:09:10,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 18:09:10,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 18:09:10,694 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@444f5377 +02 二月 2026 | 18:09:11,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 18:09:11,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 18:09:11,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 18:09:11,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 18:09:11,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 18:09:11,710 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 18:09:12,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 18:09:28,332 | ERROR | Thread-29 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 18:09:28,336 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 18:09:53,536 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 18:09:53,578 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:09:56,140 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:34 +02 二月 2026 | 18:09:56,269 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:09:58,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:627364 +02 二月 2026 | 18:09:58,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 18:09:58,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 18:09:59,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 18:09:59,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 18:09:59,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 18:10:07,136 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 18:10:07,189 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 18:10:07,549 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 18:10:07,779 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:10:12,057 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:43 +02 二月 2026 | 18:10:12,207 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:10:15,178 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:627364 +02 二月 2026 | 18:10:15,219 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 18:10:15,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 18:10:15,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 18:10:15,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 18:10:15,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 18:10:16,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 18:10:16,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 18:10:16,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 18:10:16,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 18:10:16,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 18:10:16,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 18:10:16,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 18:10:16,561 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7dcf8447 +02 二月 2026 | 18:10:17,282 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 18:10:17,282 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 18:10:17,282 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 18:10:17,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 18:10:17,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 18:10:17,532 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 18:10:18,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 18:10:25,112 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 18:10:25,152 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:10:27,737 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:35 +02 二月 2026 | 18:10:27,873 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:10:30,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:627364 +02 二月 2026 | 18:10:30,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [364881]] +02 二月 2026 | 18:10:31,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [364881]] +02 二月 2026 | 18:10:31,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 18:10:31,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 18:10:31,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 18:10:31,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 18:10:31,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 18:10:31,849 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 18:10:31,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 18:10:31,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 18:10:31,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 18:10:31,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 18:10:32,234 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@75d8668e +02 二月 2026 | 18:10:32,966 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 18:10:32,966 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 18:10:32,966 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 18:10:33,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 18:10:33,049 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 18:10:33,212 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 18:10:33,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 18:10:40,867 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 18:10:40,908 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 18:10:43,858 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:32 +02 二月 2026 | 18:10:44,002 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 18:10:44,197 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 18:10:44,203 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 18:10:46,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:638402 +02 二月 2026 | 18:10:46,686 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 18:10:46,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 18:10:46,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 18:10:46,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 18:10:46,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 18:10:47,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 18:10:47,494 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 18:10:47,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 18:10:47,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 18:10:47,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 18:10:47,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 18:10:47,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 18:10:47,923 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1269c127 +02 二月 2026 | 18:10:48,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 18:10:48,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 18:10:48,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 18:10:48,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 18:10:48,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 18:10:48,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 18:10:49,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:41:00,471 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 19:41:00,541 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 19:41:00,880 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 19:41:01,102 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:41:05,978 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:44 +02 二月 2026 | 19:41:06,149 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:41:08,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:41:09,959 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:41:09,960 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:41:09,960 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:391901 +02 二月 2026 | 19:41:10,296 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 +02 二月 2026 | 19:41:11,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:391901 +02 二月 2026 | 19:41:12,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:12,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:12,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:41:12,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:41:12,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:41:12,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:41:12,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:41:12,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:41:12,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:41:12,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:41:12,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:41:13,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:41:13,355 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2f73ca74 +02 二月 2026 | 19:41:14,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:41:14,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:41:14,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:41:14,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:41:14,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:41:14,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:41:15,604 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 19:41:15,640 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:41:18,241 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:36 +02 二月 2026 | 19:41:18,350 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:41:20,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:391901 +02 二月 2026 | 19:41:20,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:20,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:20,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:41:20,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:41:20,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:41:21,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:41:21,396 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:41:21,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:41:21,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:41:21,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:41:21,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:41:21,588 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:41:21,808 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6ed25a4d +02 二月 2026 | 19:41:22,514 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:41:22,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 19:41:22,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:41:22,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:41:22,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:41:22,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:41:22,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:41:22,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:41:23,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:41:24,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:41:24,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:41:24,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:533872 +02 二月 2026 | 19:41:24,781 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 +02 二月 2026 | 19:41:26,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:533872 +02 二月 2026 | 19:41:26,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:26,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:27,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:41:27,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:41:27,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:41:27,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:41:27,540 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:41:27,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:41:27,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:41:27,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:41:27,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:41:27,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:41:27,942 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6ed25a4d +02 二月 2026 | 19:41:28,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:41:28,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:41:28,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:41:28,686 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:41:28,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:41:28,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:41:30,244 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 19:41:30,279 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:41:33,199 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:33 +02 二月 2026 | 19:41:33,349 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:41:35,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:533872 +02 二月 2026 | 19:41:35,616 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:35,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:35,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:41:35,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:41:35,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:41:36,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:41:36,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:41:36,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:41:36,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:41:36,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:41:36,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:41:36,672 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:41:36,934 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@12a92382 +02 二月 2026 | 19:41:37,645 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:41:37,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:41:37,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:41:37,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:41:37,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:41:37,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:41:38,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:41:39,439 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:41:39,439 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:41:39,439 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:551441 +02 二月 2026 | 19:41:39,787 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:528242 +02 二月 2026 | 19:41:41,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:551441 +02 二月 2026 | 19:41:41,546 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:41,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:41:41,853 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:41:41,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:41:41,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:41:42,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:41:42,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:41:42,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:41:42,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:41:42,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:41:42,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:41:42,523 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:41:42,523 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:41:42,525 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 19:41:42,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@12a92382 +02 二月 2026 | 19:41:43,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:41:43,526 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:41:43,526 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:41:43,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:41:43,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:41:43,772 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:41:45,135 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 19:41:45,177 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:41:48,000 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:32 +02 二月 2026 | 19:41:48,117 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:41:50,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:551441 +02 二月 2026 | 19:41:50,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 19:41:50,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 19:41:50,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:41:50,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:41:50,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:41:51,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:41:51,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:41:51,487 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:41:51,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:41:51,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:41:51,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:41:51,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:41:51,918 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65bde423 +02 二月 2026 | 19:41:52,520 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:41:52,521 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 19:41:52,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:41:52,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:41:52,750 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:41:52,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:41:52,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:41:52,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:41:53,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:41:54,472 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:41:54,472 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:41:54,472 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:498374 +02 二月 2026 | 19:41:57,888 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 19:41:57,955 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 19:41:58,208 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 19:41:58,432 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:42:02,921 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:45 +02 二月 2026 | 19:42:03,068 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:42:05,754 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:551441 +02 二月 2026 | 19:42:05,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 19:42:05,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 19:42:06,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:42:06,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:42:06,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:42:06,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:42:06,896 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:42:06,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:42:06,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:42:06,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:42:06,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:42:07,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:42:07,354 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3fbfc6fe +02 二月 2026 | 19:42:08,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:42:08,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:42:08,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:42:08,163 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:42:08,227 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:42:08,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:42:09,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:42:10,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:42:10,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:42:10,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:641287 +02 二月 2026 | 19:42:10,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 +02 二月 2026 | 19:42:12,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:641287 +02 二月 2026 | 19:42:12,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:42:12,624 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:42:12,762 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:42:12,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:42:12,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:42:13,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:42:13,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:42:13,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:42:13,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:42:13,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:42:13,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:42:13,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:42:13,986 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3fbfc6fe +02 二月 2026 | 19:42:14,855 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:42:14,855 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:42:14,855 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:42:14,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:42:14,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:42:15,074 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:43:03,074 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 19:43:03,119 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 19:43:03,369 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 19:43:03,598 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:43:10,105 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 19:43:10,151 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 19:43:10,490 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 19:43:10,724 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:43:15,295 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:46 +02 二月 2026 | 19:43:15,426 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:43:18,638 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:551441 +02 二月 2026 | 19:43:18,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 19:43:18,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 19:43:19,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:43:19,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:43:19,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:43:19,444 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:43:19,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:43:19,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:43:19,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:43:19,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:43:19,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:43:19,790 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:43:19,996 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5808aa78 +02 二月 2026 | 19:43:20,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:43:20,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:43:20,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:43:20,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:43:20,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:43:20,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:43:21,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:43:22,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:43:22,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:43:22,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:838845 +02 二月 2026 | 19:43:22,909 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 +02 二月 2026 | 19:43:24,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:838845 +02 二月 2026 | 19:43:24,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:43:24,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:43:24,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:43:24,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:43:24,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:43:25,298 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:43:25,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:43:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:43:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:43:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:43:25,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:43:25,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:43:25,850 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5808aa78 +02 二月 2026 | 19:43:26,528 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:43:26,529 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:43:26,529 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:43:26,573 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:43:26,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:43:26,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:47:18,433 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:47:18,438 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 19:47:32,106 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 19:47:32,247 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:47:35,559 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:37 +02 二月 2026 | 19:47:36,687 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:47:39,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:838845 +02 二月 2026 | 19:47:39,396 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:47:39,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:47:39,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:47:39,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:47:39,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:47:40,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:47:40,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:47:40,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:47:40,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:47:40,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:47:40,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:47:40,499 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:47:40,710 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@539e5e3a +02 二月 2026 | 19:47:41,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:47:41,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:47:41,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:47:41,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:47:41,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:47:41,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:47:42,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:47:43,140 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:47:43,140 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:47:43,140 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:851968 +02 二月 2026 | 19:47:43,527 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 +02 二月 2026 | 19:47:45,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851968 +02 二月 2026 | 19:47:45,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:47:45,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:47:45,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:47:45,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:47:45,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:47:45,900 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:47:46,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:47:46,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:47:46,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:47:46,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:47:46,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:47:46,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:47:46,444 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@539e5e3a +02 二月 2026 | 19:47:47,092 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:47:47,092 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:47:47,092 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:47:47,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:47:47,178 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:47:47,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:47:48,730 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 19:47:48,767 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:47:51,704 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:34 +02 二月 2026 | 19:47:51,826 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:47:54,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851968 +02 二月 2026 | 19:47:54,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:47:54,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:47:54,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:47:54,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:47:54,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:47:55,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:47:55,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:47:55,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:47:55,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:47:55,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:47:55,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:47:55,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:47:55,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@112e0f5c +02 二月 2026 | 19:47:56,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:47:56,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:47:56,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:47:56,438 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:47:56,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:47:56,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:47:57,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:47:58,256 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:47:58,256 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:47:58,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:930729 +02 二月 2026 | 19:47:58,598 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:528242 +02 二月 2026 | 19:48:00,224 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:930729 +02 二月 2026 | 19:48:00,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:00,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:00,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:48:00,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:48:00,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:48:01,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:48:01,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:48:01,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:48:01,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:48:01,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:48:01,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:48:01,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:48:01,645 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@112e0f5c +02 二月 2026 | 19:48:02,320 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:48:02,320 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:48:02,320 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:48:02,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:48:02,370 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:48:02,373 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 19:48:02,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:48:02,533 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:48:03,869 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 19:48:03,913 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:48:06,861 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:33 +02 二月 2026 | 19:48:06,987 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:48:09,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:930729 +02 二月 2026 | 19:48:09,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:09,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:10,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:48:10,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:48:10,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:48:10,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:48:10,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:48:10,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:48:10,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:48:10,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:48:10,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:48:10,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:48:11,026 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@56823148 +02 二月 2026 | 19:48:11,846 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:48:11,846 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:48:11,846 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:48:11,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:48:11,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:48:12,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:48:12,373 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:48:12,376 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 19:48:12,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:48:13,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:48:13,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:48:13,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:925502 +02 二月 2026 | 19:48:14,061 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 19:48:15,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:925502 +02 二月 2026 | 19:48:15,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:15,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:15,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:48:15,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:48:15,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:48:16,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:48:16,407 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:48:16,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:48:16,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 19:48:16,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:48:16,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:48:16,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:48:16,894 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@56823148 +02 二月 2026 | 19:48:17,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:48:17,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:48:17,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:48:17,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:48:17,849 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:48:17,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:48:19,379 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 19:48:19,418 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 19:48:22,121 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:32 +02 二月 2026 | 19:48:22,249 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:48:25,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:930729 +02 二月 2026 | 19:48:25,467 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:25,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:25,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:48:25,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:48:25,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:48:26,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:48:26,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:48:26,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:48:26,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3294000 +02 二月 2026 | 19:48:26,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:48:26,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:48:26,427 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:48:26,689 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@21ec45b +02 二月 2026 | 19:48:27,438 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:48:27,438 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:48:27,438 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:48:27,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:48:27,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:48:27,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:48:28,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 19:48:29,350 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 19:48:29,350 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 19:48:29,350 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:351145 +02 二月 2026 | 19:48:29,706 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:972225 +02 二月 2026 | 19:48:31,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:351145 +02 二月 2026 | 19:48:31,459 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:31,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 19:48:31,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 19:48:31,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 19:48:31,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 19:48:32,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 19:48:32,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 19:48:32,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 19:48:32,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3294000 +02 二月 2026 | 19:48:32,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 19:48:32,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 19:48:32,381 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:48:32,383 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 19:48:32,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 19:48:32,641 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@21ec45b +02 二月 2026 | 19:48:33,348 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 19:48:33,349 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 19:48:33,349 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 19:48:33,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 19:48:33,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 19:48:33,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,974 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,975 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,981 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,981 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,981 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,992 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,993 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,996 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,997 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:34,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:35,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:42,379 | ERROR | Thread-55 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:48:42,381 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 19:48:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:52,391 | ERROR | Thread-60 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:48:52,391 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:48:52,391 | ERROR | Thread-61 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:48:52,391 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:48:52,392 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 19:48:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:48:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:12,384 | ERROR | Thread-70 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:12,388 | ERROR | Thread-72 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:12,388 | ERROR | Thread-65 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:12,388 | ERROR | Thread-71 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:12,392 | ERROR | Thread-73 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:32,393 | ERROR | Thread-79 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:32,394 | ERROR | Thread-82 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:32,393 | ERROR | Thread-81 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:32,393 | ERROR | Thread-80 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:32,397 | ERROR | Thread-83 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:52,399 | ERROR | Thread-91 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:52,399 | ERROR | Thread-89 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:52,399 | ERROR | Thread-90 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:52,400 | ERROR | Thread-92 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:52,403 | ERROR | Thread-93 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:49:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:12,438 | ERROR | Thread-101 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:12,438 | ERROR | Thread-102 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:12,438 | ERROR | Thread-99 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:12,438 | ERROR | Thread-100 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:12,438 | ERROR | Thread-103 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:32,409 | ERROR | Thread-110 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:32,409 | ERROR | Thread-111 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:32,409 | ERROR | Thread-109 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:32,409 | ERROR | Thread-112 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:32,411 | ERROR | Thread-113 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:52,431 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:52,431 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:52,431 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:52,431 | ERROR | Thread-121 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:52,431 | ERROR | Thread-120 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:50:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:12,439 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:12,439 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:12,439 | ERROR | Thread-133 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:12,439 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:12,439 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:32,427 | ERROR | Thread-140 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:32,427 | ERROR | Thread-143 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:32,427 | ERROR | Thread-142 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:32,427 | ERROR | Thread-139 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:32,427 | ERROR | Thread-141 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:52,440 | ERROR | Thread-150 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:52,440 | ERROR | Thread-149 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:52,440 | ERROR | Thread-153 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:52,440 | ERROR | Thread-151 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:52,440 | ERROR | Thread-152 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:51:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:12,437 | ERROR | Thread-160 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:12,543 | ERROR | Thread-161 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:12,543 | ERROR | Thread-163 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:12,543 | ERROR | Thread-162 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:12,543 | ERROR | Thread-159 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:32,525 | ERROR | Thread-170 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:32,525 | ERROR | Thread-171 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:32,525 | ERROR | Thread-169 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:32,525 | ERROR | Thread-173 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:32,525 | ERROR | Thread-172 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:52,452 | ERROR | Thread-179 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:52,452 | ERROR | Thread-182 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:52,452 | ERROR | Thread-183 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:52,452 | ERROR | Thread-181 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:52,452 | ERROR | Thread-180 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:52:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:12,461 | ERROR | Thread-190 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:12,461 | ERROR | Thread-192 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:12,461 | ERROR | Thread-193 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:12,461 | ERROR | Thread-191 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:12,461 | ERROR | Thread-189 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:32,461 | ERROR | Thread-200 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:32,461 | ERROR | Thread-203 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:32,461 | ERROR | Thread-202 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:32,461 | ERROR | Thread-201 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:32,462 | ERROR | Thread-199 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:49,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:49,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:49,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:49,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:52,468 | ERROR | Thread-212 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:52,468 | ERROR | Thread-213 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:52,468 | ERROR | Thread-211 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:52,468 | ERROR | Thread-209 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:52,468 | ERROR | Thread-210 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:53:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:12,473 | ERROR | Thread-220 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:12,473 | ERROR | Thread-221 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:12,473 | ERROR | Thread-222 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:12,473 | ERROR | Thread-219 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:12,474 | ERROR | Thread-223 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:32,478 | ERROR | Thread-229 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:32,478 | ERROR | Thread-232 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:32,478 | ERROR | Thread-231 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:32,478 | ERROR | Thread-230 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:32,492 | ERROR | Thread-233 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:52,484 | ERROR | Thread-240 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:52,484 | ERROR | Thread-243 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:52,484 | ERROR | Thread-239 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:52,490 | ERROR | Thread-242 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:52,490 | ERROR | Thread-241 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:54:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:54:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:12,490 | ERROR | Thread-254 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:12,490 | ERROR | Thread-250 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:12,490 | ERROR | Thread-249 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:12,490 | ERROR | Thread-252 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:12,494 | ERROR | Thread-251 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:32,556 | ERROR | Thread-263 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:32,557 | ERROR | Thread-262 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:32,556 | ERROR | Thread-264 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:32,556 | ERROR | Thread-261 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:32,556 | ERROR | Thread-260 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:52,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:52,517 | ERROR | Thread-273 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:52,517 | ERROR | Thread-271 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:52,517 | ERROR | Thread-275 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:52,518 | ERROR | Thread-272 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:52,518 | ERROR | Thread-274 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:55:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:12,547 | ERROR | Thread-282 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:12,547 | ERROR | Thread-285 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:12,547 | ERROR | Thread-284 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:12,547 | ERROR | Thread-281 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:12,547 | ERROR | Thread-283 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:19,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:19,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:19,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:19,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:32,512 | ERROR | Thread-292 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:32,513 | ERROR | Thread-293 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:32,513 | ERROR | Thread-295 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:32,512 | ERROR | Thread-291 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:32,522 | ERROR | Thread-294 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:52,518 | ERROR | Thread-305 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:52,518 | ERROR | Thread-306 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:52,518 | ERROR | Thread-303 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:52,518 | ERROR | Thread-304 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:52,518 | ERROR | Thread-302 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:56:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:12,634 | ERROR | Thread-313 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:12,634 | ERROR | Thread-315 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:12,634 | ERROR | Thread-312 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:12,634 | ERROR | Thread-314 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:12,634 | ERROR | Thread-316 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:32,529 | ERROR | Thread-323 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:32,529 | ERROR | Thread-324 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:32,531 | ERROR | Thread-325 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:32,531 | ERROR | Thread-322 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:32,553 | ERROR | Thread-326 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:52,538 | ERROR | Thread-335 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:52,538 | ERROR | Thread-334 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:52,538 | ERROR | Thread-337 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:52,538 | ERROR | Thread-333 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:52,538 | ERROR | Thread-336 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:57:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:12,549 | ERROR | Thread-347 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:12,549 | ERROR | Thread-343 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:12,549 | ERROR | Thread-346 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:12,549 | ERROR | Thread-344 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:12,549 | ERROR | Thread-345 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:32,573 | ERROR | Thread-354 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:32,573 | ERROR | Thread-357 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:32,573 | ERROR | Thread-356 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:32,573 | ERROR | Thread-353 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:32,573 | ERROR | Thread-355 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:43,492 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:52,551 | ERROR | Thread-364 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:52,551 | ERROR | Thread-365 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:52,553 | ERROR | Thread-366 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:52,566 | ERROR | Thread-368 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:52,566 | ERROR | Thread-367 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:58:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:12,556 | ERROR | Thread-374 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:12,558 | ERROR | Thread-375 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:12,558 | ERROR | Thread-377 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:12,558 | ERROR | Thread-376 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:12,563 | ERROR | Thread-378 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:32,568 | ERROR | Thread-388 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:32,568 | ERROR | Thread-387 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:32,568 | ERROR | Thread-386 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:32,568 | ERROR | Thread-385 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:32,568 | ERROR | Thread-384 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:52,574 | ERROR | Thread-394 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:52,574 | ERROR | Thread-398 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:52,574 | ERROR | Thread-397 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:52,574 | ERROR | Thread-396 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:52,574 | ERROR | Thread-395 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 19:59:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:12,581 | ERROR | Thread-405 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:12,581 | ERROR | Thread-407 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:12,581 | ERROR | Thread-408 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:12,581 | ERROR | Thread-406 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:12,581 | ERROR | Thread-404 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:32,579 | ERROR | Thread-414 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:32,581 | ERROR | Thread-416 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:32,581 | ERROR | Thread-418 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:32,582 | ERROR | Thread-415 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:32,586 | ERROR | Thread-417 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:52,586 | ERROR | Thread-425 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:52,586 | ERROR | Thread-424 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:52,591 | ERROR | Thread-427 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:52,591 | ERROR | Thread-428 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:52,591 | ERROR | Thread-426 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:00:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:12,591 | ERROR | Thread-434 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:12,592 | ERROR | Thread-438 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:12,593 | ERROR | Thread-435 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:12,591 | ERROR | Thread-436 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:12,593 | ERROR | Thread-437 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:32,598 | ERROR | Thread-448 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:32,598 | ERROR | Thread-446 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:32,598 | ERROR | Thread-444 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:32,598 | ERROR | Thread-445 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:32,599 | ERROR | Thread-447 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:52,614 | ERROR | Thread-454 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:52,614 | ERROR | Thread-458 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:52,614 | ERROR | Thread-455 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:52,614 | ERROR | Thread-457 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:52,614 | ERROR | Thread-456 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:01:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:12,613 | ERROR | Thread-468 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:12,613 | ERROR | Thread-467 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:12,613 | ERROR | Thread-466 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:12,613 | ERROR | Thread-464 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:12,620 | ERROR | Thread-465 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:32,615 | ERROR | Thread-474 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:32,615 | ERROR | Thread-476 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:32,615 | ERROR | Thread-475 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:32,615 | ERROR | Thread-477 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:32,616 | ERROR | Thread-478 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:52,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:52,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:52,619 | ERROR | Thread-484 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:52,620 | ERROR | Thread-486 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:52,634 | ERROR | Thread-487 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:52,634 | ERROR | Thread-485 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:52,634 | ERROR | Thread-488 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:02:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:10,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:10,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:10,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:12,380 | ERROR | Thread-497 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:12,380 | ERROR | Thread-495 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:12,380 | ERROR | Thread-496 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:12,380 | ERROR | Thread-494 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:12,396 | ERROR | Thread-498 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:32,389 | ERROR | Thread-507 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:32,389 | ERROR | Thread-509 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:32,389 | ERROR | Thread-510 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:32,389 | ERROR | Thread-508 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:32,389 | ERROR | Thread-511 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:52,414 | ERROR | Thread-519 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:52,414 | ERROR | Thread-520 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:52,414 | ERROR | Thread-517 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:52,414 | ERROR | Thread-518 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:52,414 | ERROR | Thread-521 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:03:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:12,399 | ERROR | Thread-528 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:12,399 | ERROR | Thread-529 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:12,399 | ERROR | Thread-530 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:12,399 | ERROR | Thread-527 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:12,402 | ERROR | Thread-531 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:32,403 | ERROR | Thread-537 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:32,403 | ERROR | Thread-541 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:32,403 | ERROR | Thread-539 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:32,403 | ERROR | Thread-540 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:32,403 | ERROR | Thread-538 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:52,408 | ERROR | Thread-549 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:52,408 | ERROR | Thread-548 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:52,409 | ERROR | Thread-547 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:52,408 | ERROR | Thread-550 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:52,410 | ERROR | Thread-551 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:04:58,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:10,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:10,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:10,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:10,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:12,420 | ERROR | Thread-563 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:12,420 | ERROR | Thread-561 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:12,420 | ERROR | Thread-562 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:12,420 | ERROR | Thread-560 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:12,420 | ERROR | Thread-559 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:31,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:32,419 | ERROR | Thread-572 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:32,419 | ERROR | Thread-570 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:32,419 | ERROR | Thread-571 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:32,419 | ERROR | Thread-569 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:32,422 | ERROR | Thread-573 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:52,428 | ERROR | Thread-582 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:52,428 | ERROR | Thread-580 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:52,428 | ERROR | Thread-583 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:52,428 | ERROR | Thread-581 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:52,428 | ERROR | Thread-584 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:05:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:12,444 | ERROR | Thread-590 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:12,445 | ERROR | Thread-593 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:12,445 | ERROR | Thread-592 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:12,445 | ERROR | Thread-594 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:12,445 | ERROR | Thread-591 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:32,436 | ERROR | Thread-602 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:32,437 | ERROR | Thread-603 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:32,437 | ERROR | Thread-604 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:32,436 | ERROR | Thread-600 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:32,436 | ERROR | Thread-601 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:52,443 | ERROR | Thread-611 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:52,443 | ERROR | Thread-614 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:52,443 | ERROR | Thread-613 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:52,445 | ERROR | Thread-615 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:52,445 | ERROR | Thread-612 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:06:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:01,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:12,460 | ERROR | Thread-621 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:12,461 | ERROR | Thread-625 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:12,461 | ERROR | Thread-624 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:12,461 | ERROR | Thread-623 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:12,460 | ERROR | Thread-622 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:22,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:32,481 | ERROR | Thread-634 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:32,481 | ERROR | Thread-632 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:32,481 | ERROR | Thread-631 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:32,481 | ERROR | Thread-633 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:32,481 | ERROR | Thread-635 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:43,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:43,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:52,462 | ERROR | Thread-643 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:52,462 | ERROR | Thread-642 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:52,462 | ERROR | Thread-644 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:52,462 | ERROR | Thread-641 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:52,471 | ERROR | Thread-645 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:55,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:07:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:12,470 | ERROR | Thread-652 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:12,471 | ERROR | Thread-655 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:12,471 | ERROR | Thread-654 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:12,470 | ERROR | Thread-653 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:12,470 | ERROR | Thread-656 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:25,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:25,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:25,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:25,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:32,472 | ERROR | Thread-663 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:32,472 | ERROR | Thread-662 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:32,472 | ERROR | Thread-665 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:32,472 | ERROR | Thread-664 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:32,476 | ERROR | Thread-666 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:52,481 | ERROR | Thread-677 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:52,481 | ERROR | Thread-675 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:52,481 | ERROR | Thread-676 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:52,481 | ERROR | Thread-674 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:52,486 | ERROR | Thread-673 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:55,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:08:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:07,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:12,484 | ERROR | Thread-683 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:12,484 | ERROR | Thread-687 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:12,484 | ERROR | Thread-685 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:12,484 | ERROR | Thread-684 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:12,488 | ERROR | Thread-686 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:31,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:32,492 | ERROR | Thread-695 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:32,493 | ERROR | Thread-696 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:32,492 | ERROR | Thread-697 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:32,492 | ERROR | Thread-694 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:32,492 | ERROR | Thread-693 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:37,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:49,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:52,513 | ERROR | Thread-704 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:52,514 | ERROR | Thread-706 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:52,514 | ERROR | Thread-705 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:52,514 | ERROR | Thread-708 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:52,513 | ERROR | Thread-707 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:09:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:12,510 | ERROR | Thread-717 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:12,510 | ERROR | Thread-714 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:12,510 | ERROR | Thread-718 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:12,510 | ERROR | Thread-715 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:12,510 | ERROR | Thread-716 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:16,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:22,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:32,506 | ERROR | Thread-724 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:32,518 | ERROR | Thread-725 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:32,518 | ERROR | Thread-726 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:32,518 | ERROR | Thread-727 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:32,519 | ERROR | Thread-728 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:40,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:46,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:46,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:46,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:46,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:52,526 | ERROR | Thread-735 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:52,526 | ERROR | Thread-738 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:52,526 | ERROR | Thread-737 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:52,526 | ERROR | Thread-736 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:52,526 | ERROR | Thread-739 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:10:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:12,517 | ERROR | Thread-745 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:12,518 | ERROR | Thread-746 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:12,518 | ERROR | Thread-747 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:12,518 | ERROR | Thread-748 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:12,525 | ERROR | Thread-749 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:32,535 | ERROR | Thread-755 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:32,535 | ERROR | Thread-757 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:32,535 | ERROR | Thread-758 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:32,535 | ERROR | Thread-759 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:32,535 | ERROR | Thread-756 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:37,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:52,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:52,527 | ERROR | Thread-766 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:52,529 | ERROR | Thread-768 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:52,529 | ERROR | Thread-769 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:52,532 | ERROR | Thread-770 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:52,535 | ERROR | Thread-767 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:11:58,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:12,540 | ERROR | Thread-777 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:12,541 | ERROR | Thread-779 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:12,540 | ERROR | Thread-780 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:12,540 | ERROR | Thread-776 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:12,540 | ERROR | Thread-778 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:19,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:32,541 | ERROR | Thread-787 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:32,541 | ERROR | Thread-786 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:32,542 | ERROR | Thread-790 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:32,547 | ERROR | Thread-788 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:32,547 | ERROR | Thread-789 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:40,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:40,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:40,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:40,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:52,549 | ERROR | Thread-800 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:52,549 | ERROR | Thread-801 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:52,549 | ERROR | Thread-798 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:52,549 | ERROR | Thread-797 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:52,549 | ERROR | Thread-799 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:12:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:12,553 | ERROR | Thread-811 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:12,553 | ERROR | Thread-808 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:12,553 | ERROR | Thread-809 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:12,559 | ERROR | Thread-810 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:12,559 | ERROR | Thread-807 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:25,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:25,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:25,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:25,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:25,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:32,563 | ERROR | Thread-817 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:32,563 | ERROR | Thread-818 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:32,572 | ERROR | Thread-819 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:32,572 | ERROR | Thread-821 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:32,572 | ERROR | Thread-820 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:43,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:52,580 | ERROR | Thread-828 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:52,580 | ERROR | Thread-829 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:52,580 | ERROR | Thread-832 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:52,580 | ERROR | Thread-831 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:52,580 | ERROR | Thread-830 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:13:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:10,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:12,570 | ERROR | Thread-841 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:12,570 | ERROR | Thread-840 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:12,570 | ERROR | Thread-838 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:12,570 | ERROR | Thread-839 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:12,572 | ERROR | Thread-842 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:31,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:32,578 | ERROR | Thread-850 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:32,579 | ERROR | Thread-849 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:32,579 | ERROR | Thread-853 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:32,579 | ERROR | Thread-852 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:32,578 | ERROR | Thread-851 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:52,585 | ERROR | Thread-860 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:52,585 | ERROR | Thread-864 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:52,585 | ERROR | Thread-863 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:52,585 | ERROR | Thread-861 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:52,585 | ERROR | Thread-862 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:14:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:12,614 | ERROR | Thread-872 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:12,615 | ERROR | Thread-874 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:12,614 | ERROR | Thread-871 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:12,614 | ERROR | Thread-873 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:12,614 | ERROR | Thread-870 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:19,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:32,593 | ERROR | Thread-880 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:32,593 | ERROR | Thread-882 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:32,594 | ERROR | Thread-881 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:32,594 | ERROR | Thread-884 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:32,595 | ERROR | Thread-883 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:46,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:52,607 | ERROR | Thread-894 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:52,607 | ERROR | Thread-895 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:52,607 | ERROR | Thread-892 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:52,613 | ERROR | Thread-893 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:52,613 | ERROR | Thread-891 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:15:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:01,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:01,501 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:04,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:07,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:12,633 | ERROR | Thread-904 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:12,633 | ERROR | Thread-901 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:12,633 | ERROR | Thread-903 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:12,633 | ERROR | Thread-902 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:12,633 | ERROR | Thread-905 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:16,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:25,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:28,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:32,611 | ERROR | Thread-911 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:32,611 | ERROR | Thread-912 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:32,611 | ERROR | Thread-913 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:32,613 | ERROR | Thread-915 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:32,613 | ERROR | Thread-914 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:40,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:43,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:46,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:49,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:52,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:52,621 | ERROR | Thread-925 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:52,621 | ERROR | Thread-924 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:52,624 | ERROR | Thread-922 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:52,625 | ERROR | Thread-923 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:52,624 | ERROR | Thread-926 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:16:58,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:10,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:12,640 | ERROR | Thread-935 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:12,640 | ERROR | Thread-932 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:12,640 | ERROR | Thread-933 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:12,640 | ERROR | Thread-936 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:12,640 | ERROR | Thread-934 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:22,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:25,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:28,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:31,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:32,646 | ERROR | Thread-944 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:32,646 | ERROR | Thread-945 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:32,646 | ERROR | Thread-942 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:32,646 | ERROR | Thread-943 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:32,646 | ERROR | Thread-946 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:37,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:40,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:43,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:46,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:49,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:52,384 | ERROR | Thread-954 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:52,384 | ERROR | Thread-957 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:52,385 | ERROR | Thread-956 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:52,385 | ERROR | Thread-955 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:52,385 | ERROR | Thread-953 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:55,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:17:58,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:01,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:04,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:07,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:10,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:12,391 | ERROR | Thread-966 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:18:12,392 | ERROR | Thread-963 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:18:12,391 | ERROR | Thread-964 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:18:12,391 | ERROR | Thread-967 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:18:12,391 | ERROR | Thread-965 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:16,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:18:19,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:45:24,304 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 20:45:24,358 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 20:45:24,666 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 20:45:24,870 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 20:45:29,564 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:47 +02 二月 2026 | 20:45:29,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 20:45:32,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 20:45:33,419 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 20:45:33,419 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 20:45:33,419 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:244865 +02 二月 2026 | 20:45:33,773 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 +02 二月 2026 | 20:45:35,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:244865 +02 二月 2026 | 20:45:35,308 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:45:35,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:45:35,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:45:35,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:45:35,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:45:35,965 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:45:36,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:45:36,169 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:45:36,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:45:36,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:45:36,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:45:36,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:45:36,712 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@45af741d +02 二月 2026 | 20:45:37,432 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:45:37,433 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:45:37,433 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:45:37,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:45:37,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:45:37,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:45:39,008 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 20:45:39,056 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 20:45:41,835 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:38 +02 二月 2026 | 20:45:42,078 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 20:45:44,354 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:244865 +02 二月 2026 | 20:45:44,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:45:44,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:45:44,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:45:44,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:45:44,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:45:45,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:45:45,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:45:45,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:45:45,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:45:45,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:45:45,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:45:45,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:45:45,580 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7efcce18 +02 二月 2026 | 20:45:46,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:45:46,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:45:46,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:45:46,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:45:46,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:45:46,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:45:47,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 20:45:48,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 20:45:48,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 20:45:48,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:295440 +02 二月 2026 | 20:45:48,406 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 +02 二月 2026 | 20:45:50,491 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295440 +02 二月 2026 | 20:45:50,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:45:50,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:45:50,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:45:50,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:45:50,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:45:51,387 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:45:51,504 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:45:51,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:45:51,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:45:51,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:45:51,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:45:51,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:45:51,957 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7efcce18 +02 二月 2026 | 20:45:52,612 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:45:52,617 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 20:45:52,841 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:45:52,841 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:45:52,841 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:45:52,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:45:52,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:45:53,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:45:54,653 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 20:45:54,690 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 20:45:57,843 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:35 +02 二月 2026 | 20:45:57,978 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 20:46:00,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295440 +02 二月 2026 | 20:46:00,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:00,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:00,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:46:00,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:46:00,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:46:01,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:46:01,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:46:01,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:46:01,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:46:01,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:46:01,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:46:01,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:46:01,762 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@63384b22 +02 二月 2026 | 20:46:02,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:46:02,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:46:02,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:46:02,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:46:02,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:46:02,619 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:46:02,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 20:46:02,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:46:06,252 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 20:46:06,301 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 20:46:06,548 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 20:46:06,764 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 20:46:11,496 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:48 +02 二月 2026 | 20:46:11,654 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 20:46:14,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295440 +02 二月 2026 | 20:46:14,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:14,849 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:14,964 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:46:14,964 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:46:14,964 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:46:15,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:46:15,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:46:15,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:46:15,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:46:15,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:46:15,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:46:15,774 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:46:16,002 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@444f5377 +02 二月 2026 | 20:46:16,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:46:16,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:46:16,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:46:16,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:46:17,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:46:17,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:46:17,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 20:46:18,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 20:46:18,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 20:46:18,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:115452 +02 二月 2026 | 20:46:19,096 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 +02 二月 2026 | 20:46:20,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:115452 +02 二月 2026 | 20:46:20,840 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:21,048 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:21,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:46:21,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:46:21,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:46:21,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:46:21,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:46:21,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:46:21,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:46:21,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:46:21,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:46:21,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:46:22,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@444f5377 +02 二月 2026 | 20:46:22,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:46:22,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:46:22,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:46:22,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:46:22,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:46:22,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:46:24,406 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 20:46:24,443 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 20:46:27,200 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:39 +02 二月 2026 | 20:46:27,325 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 20:46:30,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295440 +02 二月 2026 | 20:46:30,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:30,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:30,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:46:30,465 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:46:30,465 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:46:30,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:46:30,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:46:30,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:46:30,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:46:30,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:46:30,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:46:31,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:46:31,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15400034 +02 二月 2026 | 20:46:32,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:46:32,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:46:32,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:46:32,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:46:32,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:46:32,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:46:32,627 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:46:32,631 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 20:46:32,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 20:46:33,684 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 20:46:33,685 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 20:46:33,685 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:587036 +02 二月 2026 | 20:46:34,024 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 +02 二月 2026 | 20:46:35,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:587036 +02 二月 2026 | 20:46:35,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:36,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:36,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:46:36,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:46:36,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:46:36,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:46:36,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:46:36,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:46:36,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:46:36,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:46:36,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:46:36,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:46:37,097 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15400034 +02 二月 2026 | 20:46:37,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:46:37,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:46:37,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:46:37,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:46:37,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:46:38,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:46:39,372 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 20:46:39,406 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 20:46:42,321 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:36 +02 二月 2026 | 20:46:42,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 20:46:45,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:587036 +02 二月 2026 | 20:46:45,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:45,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:45,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:46:45,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:46:45,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:46:46,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:46:46,439 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:46:46,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:46:46,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:46:46,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:46:46,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:46:46,644 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:46:46,892 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1311c966 +02 二月 2026 | 20:46:47,573 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:46:47,573 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:46:47,573 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:46:47,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:46:47,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:46:47,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:46:48,655 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 20:46:49,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 20:46:49,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 20:46:49,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:328509 +02 二月 2026 | 20:46:49,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:528242 +02 二月 2026 | 20:46:51,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:328509 +02 二月 2026 | 20:46:51,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:51,938 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:46:52,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:46:52,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:46:52,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:46:52,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:46:52,520 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:46:52,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:46:52,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:46:52,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:46:52,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:46:52,634 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:46:52,636 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 20:46:52,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:46:52,967 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1311c966 +02 二月 2026 | 20:46:53,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:46:53,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:46:53,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:46:53,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:46:53,818 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:46:54,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:46:55,357 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 20:46:55,394 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 20:46:58,258 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:34 +02 二月 2026 | 20:46:58,361 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 20:47:01,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:587036 +02 二月 2026 | 20:47:01,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:47:01,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:47:01,680 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:47:01,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:47:01,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:47:02,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:47:02,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:47:02,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:47:02,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:47:02,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:47:02,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:47:02,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:47:02,631 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:47:02,634 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 20:47:02,660 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@332cd567 +02 二月 2026 | 20:47:03,510 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:47:03,510 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:47:03,510 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:47:03,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:47:03,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:47:03,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:47:04,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 20:47:05,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 20:47:05,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 20:47:05,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:296512 +02 二月 2026 | 20:47:05,639 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 20:47:07,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:296512 +02 二月 2026 | 20:47:07,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:47:07,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:47:07,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:47:07,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:47:07,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:47:08,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:47:08,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:47:08,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:47:08,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 20:47:08,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:47:08,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:47:08,461 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:47:08,667 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@332cd567 +02 二月 2026 | 20:47:09,283 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:47:09,283 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:47:09,283 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:47:09,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:47:09,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:47:09,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:47:10,879 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 login +02 二月 2026 | 20:47:10,918 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 20:47:13,856 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:972225 repeat login, token count:33 +02 二月 2026 | 20:47:13,961 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 20:47:17,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:587036 +02 二月 2026 | 20:47:17,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:47:17,838 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:47:17,955 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:47:17,955 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:47:17,955 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:47:18,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:47:18,459 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:47:18,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:47:18,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3294000 +02 二月 2026 | 20:47:18,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:47:18,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:47:18,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:47:19,149 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6a79b703 +02 二月 2026 | 20:47:19,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:47:19,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:47:19,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:47:19,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:47:19,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:47:20,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:47:20,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 20:47:21,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 20:47:21,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 20:47:21,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:850686 +02 二月 2026 | 20:47:22,105 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:972225 +02 二月 2026 | 20:47:22,638 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 20:47:22,640 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 20:47:23,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:850686 +02 二月 2026 | 20:47:23,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:47:24,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 20:47:24,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 20:47:24,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 20:47:24,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 20:47:24,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 20:47:24,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 20:47:24,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 20:47:24,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3294000 +02 二月 2026 | 20:47:24,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 20:47:24,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 20:47:24,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 20:47:25,208 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6a79b703 +02 二月 2026 | 20:47:25,933 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 20:47:25,933 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 20:47:25,933 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 20:47:25,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 20:47:26,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 20:47:26,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,628 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,629 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,630 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,632 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,632 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,632 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:27,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:47:30,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 20:59:57,313 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 20:59:57,367 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 20:59:57,641 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 20:59:57,844 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:00:02,577 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:49 +02 二月 2026 | 21:00:02,742 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:00:07,538 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:850686 +02 二月 2026 | 21:00:07,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:00:07,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:00:07,936 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:00:07,936 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:00:07,936 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:00:08,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:00:08,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:00:08,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:00:08,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:00:08,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:00:08,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:00:08,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:00:09,063 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@76ced507 +02 二月 2026 | 21:00:09,869 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:00:09,870 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:00:09,870 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:00:09,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:00:09,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:00:10,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:00:11,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:00:12,075 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:00:12,075 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:00:12,076 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:560624 +02 二月 2026 | 21:00:12,503 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 +02 二月 2026 | 21:00:14,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:560624 +02 二月 2026 | 21:00:14,231 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:00:14,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:00:14,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:00:14,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:00:14,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:00:14,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:00:15,028 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:00:15,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:00:15,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:00:15,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:00:15,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:00:15,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:00:15,556 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@76ced507 +02 二月 2026 | 21:00:16,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:00:16,365 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:00:16,365 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:00:16,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:00:16,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:00:16,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:13:38,615 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:13:38,617 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:13:41,041 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:13:41,092 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:13:41,351 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 21:13:41,562 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:13:46,185 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:50 +02 二月 2026 | 21:13:46,375 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:13:49,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:13:49,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:13:49,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:13:49,962 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:312200 +02 二月 2026 | 21:13:50,330 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 +02 二月 2026 | 21:13:52,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:312200 +02 二月 2026 | 21:13:52,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:13:52,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:13:52,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:13:52,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:13:52,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:13:52,749 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:13:52,855 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:13:52,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:13:52,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:13:52,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:13:52,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:13:53,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:13:53,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@69f80e4f +02 二月 2026 | 21:13:54,006 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:13:54,006 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:13:54,006 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:13:54,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:13:54,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:13:54,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:13:57,965 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 21:13:58,009 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:14:00,851 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:40 +02 二月 2026 | 21:14:00,978 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:14:02,598 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:14:02,601 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:14:03,487 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:312200 +02 二月 2026 | 21:14:03,520 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:14:03,708 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:14:03,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:14:03,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:14:03,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:14:04,212 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:14:04,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:14:04,379 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:14:04,379 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:14:04,380 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:14:04,380 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:14:04,533 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:14:04,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58dcb9a6 +02 二月 2026 | 21:14:05,501 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:14:05,501 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:14:05,501 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:14:05,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:14:05,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:14:05,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:14:06,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:14:07,290 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:14:07,290 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:14:07,290 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:469969 +02 二月 2026 | 21:14:07,853 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 +02 二月 2026 | 21:14:09,675 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:469969 +02 二月 2026 | 21:14:09,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:14:09,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:14:10,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:14:10,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:14:10,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:14:10,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:14:10,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:14:10,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:14:10,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:14:10,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:14:10,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:14:10,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:14:10,929 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58dcb9a6 +02 二月 2026 | 21:14:11,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:14:11,758 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:14:11,758 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:14:11,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:14:11,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:14:11,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:23:23,566 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:23:23,568 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:23:23,597 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 login +02 二月 2026 | 21:23:23,642 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:23:26,429 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:528242 repeat login, token count:37 +02 二月 2026 | 21:23:26,546 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:23:29,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:469969 +02 二月 2026 | 21:23:29,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:23:29,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:23:29,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:23:29,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:23:29,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:23:30,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:23:30,449 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:23:30,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:23:30,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:23:30,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:23:30,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:23:30,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:23:30,987 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@454c9bda +02 二月 2026 | 21:23:31,826 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:23:31,826 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:23:31,826 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:23:31,861 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:23:31,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:23:32,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:23:32,737 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:23:33,688 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:23:33,688 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:23:33,688 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:516510 +02 二月 2026 | 21:23:34,048 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:528242 +02 二月 2026 | 21:23:35,835 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:516510 +02 二月 2026 | 21:23:35,869 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:23:36,091 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:23:36,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:23:36,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:23:36,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:23:36,532 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:23:36,643 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:23:36,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:23:36,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:23:36,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:23:36,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:23:36,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:23:37,179 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@454c9bda +02 二月 2026 | 21:23:37,958 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:23:37,958 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:23:37,958 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:23:37,995 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:23:38,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:23:38,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:23:39,584 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:23:39,616 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:23:42,361 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:35 +02 二月 2026 | 21:23:42,495 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:23:45,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:516510 +02 二月 2026 | 21:23:45,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:23:45,481 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:23:45,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:23:45,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:23:45,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:23:45,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:23:46,035 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:23:46,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:23:46,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:23:46,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:23:46,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:23:46,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:23:48,809 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:23:48,867 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:23:49,135 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 login +02 二月 2026 | 21:23:49,415 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:23:54,180 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:364881 repeat login, token count:51 +02 二月 2026 | 21:23:54,310 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:23:57,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:516510 +02 二月 2026 | 21:23:57,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:23:58,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:23:58,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:23:58,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:23:58,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:23:58,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:23:58,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:23:58,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:23:58,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:23:58,837 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:23:58,837 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:23:58,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:23:59,210 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2264d1f9 +02 二月 2026 | 21:24:00,031 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:24:00,031 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:24:00,031 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:24:00,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:24:00,109 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:24:00,282 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:24:00,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:24:01,811 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:24:01,811 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:24:01,811 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:211724 +02 二月 2026 | 21:24:02,167 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:364881 +02 二月 2026 | 21:24:04,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:211724 +02 二月 2026 | 21:24:04,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:24:04,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:24:04,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:24:04,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:24:04,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:24:04,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:24:04,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:24:04,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:24:04,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:24:04,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:24:04,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:24:05,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:24:05,271 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2264d1f9 +02 二月 2026 | 21:24:06,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:24:06,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:24:06,037 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:24:06,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:24:06,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:24:06,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:24:07,663 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 login +02 二月 2026 | 21:24:07,710 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:24:10,801 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:181048 repeat login, token count:41 +02 二月 2026 | 21:24:10,938 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:24:12,627 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:24:12,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:24:14,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:516510 +02 二月 2026 | 21:24:14,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:24:14,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:24:14,673 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:24:14,673 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:24:14,673 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:24:15,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:24:15,137 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:24:15,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:24:15,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +02 二月 2026 | 21:24:15,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:24:15,200 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:24:15,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:24:15,571 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@137e4e5e +02 二月 2026 | 21:24:16,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:24:16,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:24:16,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:24:16,407 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:24:16,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:24:16,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:24:17,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:24:18,075 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:24:18,075 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:24:18,075 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:717036 +02 二月 2026 | 21:24:18,417 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:181048 +02 二月 2026 | 21:26:20,804 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:26:20,863 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:26:21,148 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:26:21,369 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:26:26,006 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:36 +02 二月 2026 | 21:26:26,128 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:26:30,049 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:717036 +02 二月 2026 | 21:26:30,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:26:30,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:26:30,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:26:30,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:26:30,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:26:30,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:26:31,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:26:31,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:26:31,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:26:31,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:26:31,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:26:31,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:26:31,534 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@314dd31f +02 二月 2026 | 21:26:32,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:26:32,443 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:26:32,443 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:26:32,487 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:26:32,526 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:26:32,672 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:26:33,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:26:34,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:26:34,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:26:34,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:270183 +02 二月 2026 | 21:26:34,709 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 21:26:36,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:270183 +02 二月 2026 | 21:26:36,362 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:26:36,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:26:36,673 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:26:36,673 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:26:36,673 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:26:37,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:26:37,346 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:26:37,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:26:37,382 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:26:37,382 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:26:37,382 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:26:37,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:26:37,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@314dd31f +02 二月 2026 | 21:26:38,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:26:38,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:26:38,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:26:38,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:26:38,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:26:38,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:26:40,079 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:26:40,079 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:26:40,079 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:26:40,079 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:26:40,079 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:26:42,148 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:26:42,562 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:26:42,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:26:51,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:26:54,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:19,481 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:28:19,539 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:28:19,797 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:28:20,047 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:28:24,685 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:37 +02 二月 2026 | 21:28:24,866 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:28:25,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:28,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:31,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:34,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:37,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:40,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:42,591 | ERROR | Thread-30 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:28:42,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:28:49,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:52,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:55,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:28:58,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:01,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:04,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:07,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:10,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:12,609 | ERROR | Thread-34 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:29:12,611 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:29:16,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:19,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:22,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:25,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:28,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:31,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:32,606 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:29:37,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:40,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:43,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:46,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:49,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:52,609 | ERROR | Thread-38 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:29:55,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:29:58,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:01,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:04,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:07,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:10,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:12,624 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:30:16,798 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:19,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:22,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:25,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:28,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:31,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:32,626 | ERROR | Thread-42 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:30:37,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:40,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:45,383 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:30:45,456 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:30:45,792 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:30:46,007 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:30:50,794 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:38 +02 二月 2026 | 21:30:50,945 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:30:51,793 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:54,792 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:30:57,791 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:00,792 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:03,792 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:06,791 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:09,793 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:12,635 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:31:12,639 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:31:18,793 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:21,794 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:24,793 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:27,793 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:30,793 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:32,638 | ERROR | Thread-33 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:31:32,641 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:31:36,793 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:39,791 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:42,793 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:45,792 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:48,791 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:51,791 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:31:52,661 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:32:32,119 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:32:32,184 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:32:32,653 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:32:32,913 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:32:37,339 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:39 +02 二月 2026 | 21:32:37,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:32:38,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:32:41,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:32:44,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:32:47,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:32:50,654 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:32:53,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:32:56,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:02,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:02,680 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:33:02,684 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:33:08,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:11,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:14,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:17,654 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:20,654 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:22,670 | ERROR | Thread-34 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:33:22,672 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:33:26,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:29,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:32,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:35,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:38,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:41,654 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:42,680 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:33:47,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:50,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:33:57,723 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:33:57,771 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:33:58,121 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:33:58,351 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:34:03,494 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:40 +02 二月 2026 | 21:34:03,635 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:34:04,121 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:07,121 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:10,123 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:13,121 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:16,121 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:19,122 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:22,122 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:22,436 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:34:22,440 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:34:31,122 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:34,121 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:37,122 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:34:40,121 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:35:27,103 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:35:27,162 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:35:27,415 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:35:27,654 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:35:32,013 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:41 +02 二月 2026 | 21:35:32,141 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:35:33,416 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:35:36,415 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:35:39,416 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:35:42,415 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:35:45,416 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:35:48,416 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:35:51,416 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:35:52,463 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:35:52,466 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:36:00,415 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:36:03,415 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:36:06,414 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:36:09,416 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:36:12,417 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:37:29,359 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:37:29,419 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:37:29,740 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:37:29,964 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:37:34,277 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:42 +02 二月 2026 | 21:37:34,426 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:37:35,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:37:38,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:37:41,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:37:44,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:37:47,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:37:50,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:37:52,496 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:37:52,500 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:37:56,775 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:38:02,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:05,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:08,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:11,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:14,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:17,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:22,509 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:38:22,511 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:38:23,779 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:38:29,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:32,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:35,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:38,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:41,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:42,512 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:38:42,516 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:38:47,785 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:38:53,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:56,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:38:59,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:02,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:05,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:08,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:12,519 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:39:12,522 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:39:14,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:39:20,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:23,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:26,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:29,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:32,525 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:39:32,527 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:39:35,783 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:39:41,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:44,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:47,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:50,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:39:52,534 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:39:52,535 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:39:56,782 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:40:02,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:08,910 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:40:08,971 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:40:09,297 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:40:09,521 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:40:14,042 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:43 +02 二月 2026 | 21:40:14,209 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:40:15,298 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:18,298 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:21,298 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:24,297 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:27,298 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:30,297 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:32,545 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:40:32,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:40:36,353 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:40:42,297 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:45,298 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:48,298 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:51,297 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:40:52,547 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:40:52,550 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:40:57,339 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:41:02,632 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:41:02,688 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:41:02,979 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:41:03,214 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:41:07,683 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:44 +02 二月 2026 | 21:41:07,901 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:41:22,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:41:32,558 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:41:32,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:41:43,019 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:42:02,569 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:42:02,570 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:42:13,023 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:42:32,576 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:42:32,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:42:43,040 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:43:02,583 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:43:02,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:43:13,017 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:43:32,647 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:43:32,649 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:43:43,024 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:44:03,927 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:44:03,989 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:44:04,292 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:44:04,574 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:44:09,363 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:45 +02 二月 2026 | 21:44:09,509 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:44:13,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:717036 +02 二月 2026 | 21:44:13,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:44:13,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:44:14,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:44:14,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:44:14,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:44:14,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:44:14,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:44:14,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:44:14,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:44:14,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:44:14,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:44:14,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:44:15,178 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4d358a9d +02 二月 2026 | 21:44:16,061 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:44:16,061 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:44:16,061 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:44:16,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:44:16,163 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:44:16,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:44:17,052 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:44:17,919 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:44:17,919 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:44:17,919 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:457684 +02 二月 2026 | 21:44:18,362 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 21:44:20,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:457684 +02 二月 2026 | 21:44:20,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:44:20,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:44:20,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:44:20,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:44:20,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:44:20,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:44:20,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:44:21,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:44:21,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:44:21,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:44:21,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:44:21,181 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:44:21,455 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4d358a9d +02 二月 2026 | 21:44:22,243 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:44:22,243 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:44:22,243 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:44:22,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:44:22,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:44:22,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:44:24,292 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:44:32,609 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:44:32,612 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:44:44,334 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:45:59,482 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:45:59,541 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:45:59,855 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:46:00,088 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:46:04,435 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:46 +02 二月 2026 | 21:46:04,555 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:46:07,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:46:07,960 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:46:07,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:46:07,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:784045 +02 二月 2026 | 21:46:08,441 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 21:46:10,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:784045 +02 二月 2026 | 21:46:10,183 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:46:10,521 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:46:10,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:46:10,697 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:46:10,697 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:46:11,259 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:46:11,368 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:46:11,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:46:11,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:46:11,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:46:11,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:46:11,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:46:11,851 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6f706e72 +02 二月 2026 | 21:46:12,617 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:46:12,617 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:46:12,617 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:46:12,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:46:12,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:46:12,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:48:17,595 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:48:17,599 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:48:21,503 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:48:21,563 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:48:21,833 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:48:22,051 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:48:26,775 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:47 +02 二月 2026 | 21:48:26,906 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:48:29,655 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:784045 +02 二月 2026 | 21:48:29,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:48:29,900 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:48:30,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:48:30,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:48:30,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:48:30,467 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:48:30,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:48:30,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:48:30,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:48:30,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:48:30,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:48:30,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:48:30,983 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6fc192eb +02 二月 2026 | 21:48:31,659 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:48:31,659 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:48:31,659 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:48:31,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:48:31,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:48:31,941 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:48:32,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:48:33,665 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:48:33,665 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:48:33,665 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:487009 +02 二月 2026 | 21:48:34,044 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 21:48:35,687 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:487009 +02 二月 2026 | 21:48:35,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:48:35,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:48:36,025 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:48:36,025 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:48:36,025 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:48:36,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:48:36,467 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:48:36,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:48:36,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:48:36,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:48:36,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:48:36,643 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:48:36,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6fc192eb +02 二月 2026 | 21:48:37,539 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:48:37,539 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:48:37,539 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:48:37,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:48:37,616 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:48:37,762 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:52:09,798 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:52:09,803 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:52:13,712 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:52:13,773 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:52:14,039 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:52:14,303 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:52:19,429 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:48 +02 二月 2026 | 21:52:19,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:52:22,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:784045 +02 二月 2026 | 21:52:22,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:52:22,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:52:22,845 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:52:22,845 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:52:22,845 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:52:23,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:52:23,643 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:52:23,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:52:23,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:52:23,685 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:52:23,685 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:52:23,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:52:24,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1f9fcb92 +02 二月 2026 | 21:52:24,763 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:52:24,763 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:52:24,763 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:52:24,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:52:24,869 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:52:25,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:52:25,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:52:26,881 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:52:26,881 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:52:26,881 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:371108 +02 二月 2026 | 21:52:27,234 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 21:52:29,029 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:371108 +02 二月 2026 | 21:52:29,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:52:29,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:52:29,378 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:52:29,378 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:52:29,378 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:52:29,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:52:29,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:52:29,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:52:29,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:52:29,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:52:29,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:52:30,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:52:30,322 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1f9fcb92 +02 二月 2026 | 21:52:31,043 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:52:31,043 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:52:31,043 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:52:31,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:52:31,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:52:31,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:54:02,437 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:54:02,441 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:54:06,369 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:54:06,425 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:54:06,721 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:54:06,943 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:54:11,672 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:49 +02 二月 2026 | 21:54:11,937 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:54:15,460 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:784045 +02 二月 2026 | 21:54:15,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:54:15,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:54:15,839 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:54:15,840 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:54:15,840 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:54:16,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:54:16,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:54:16,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:54:16,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:54:16,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:54:16,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:54:16,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:54:17,123 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4620b3e4 +02 二月 2026 | 21:54:17,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:54:17,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:54:17,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:54:17,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:54:17,929 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:54:18,126 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:54:18,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:54:19,827 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:54:19,827 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:54:19,827 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:708053 +02 二月 2026 | 21:54:20,334 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 21:54:22,129 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:708053 +02 二月 2026 | 21:54:22,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:54:22,380 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:54:22,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:54:22,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:54:22,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:54:22,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:54:23,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:54:23,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:54:23,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:54:23,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:54:23,071 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:54:23,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:54:23,448 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4620b3e4 +02 二月 2026 | 21:54:24,159 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:54:24,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:54:24,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:54:24,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:54:24,223 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:54:24,368 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:54:30,717 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:54:32,535 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:54:32,537 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:54:46,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:55:06,720 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:55:12,565 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:55:12,570 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:55:26,821 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:55:46,721 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:55:52,551 | ERROR | Thread-41 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:55:52,552 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:56:06,767 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:56:26,721 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:56:32,562 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 21:56:32,565 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 21:56:46,820 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:57:06,721 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 21:59:24,165 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:59:24,219 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:59:24,616 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:59:24,891 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:59:29,735 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:50 +02 二月 2026 | 21:59:29,850 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:59:40,999 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 21:59:41,055 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 21:59:41,373 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 21:59:41,634 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 21:59:46,429 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:51 +02 二月 2026 | 21:59:46,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 21:59:50,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:371108 +02 二月 2026 | 21:59:50,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +02 二月 2026 | 21:59:50,748 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +02 二月 2026 | 21:59:50,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:59:50,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:59:50,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:59:51,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:59:51,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:59:51,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:59:51,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:59:51,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:59:51,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:59:51,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:59:51,982 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5b862d7c +02 二月 2026 | 21:59:52,727 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:59:52,727 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:59:52,727 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:59:52,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:59:52,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:59:52,982 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 21:59:53,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 21:59:54,651 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 21:59:54,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 21:59:54,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:840692 +02 二月 2026 | 21:59:54,990 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 21:59:56,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:840692 +02 二月 2026 | 21:59:56,655 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:59:56,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 21:59:57,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 21:59:57,028 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 21:59:57,028 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 21:59:57,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 21:59:57,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 21:59:57,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 21:59:57,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 21:59:57,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 21:59:57,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 21:59:57,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 21:59:58,155 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5b862d7c +02 二月 2026 | 21:59:58,892 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 21:59:58,893 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 21:59:58,893 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 21:59:58,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 21:59:58,975 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 21:59:59,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:00:02,625 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:00:02,631 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:00:05,530 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:00:05,530 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:00:21,373 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:00:22,628 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:00:22,628 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:00:22,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:00:22,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:00:41,411 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:01:01,373 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:01:02,636 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:01:02,638 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:01:21,409 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:01:25,139 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:01:25,201 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:01:25,497 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:01:25,735 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:01:30,462 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:52 +02 二月 2026 | 22:01:30,625 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:01:52,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:371108 +02 二月 2026 | 22:01:52,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:01:52,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:01:52,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:01:52,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:01:52,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:01:52,657 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:01:52,660 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:01:52,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:01:53,048 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:01:53,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:01:53,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:01:53,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:01:53,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:01:53,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:01:53,534 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6be8b7e6 +02 二月 2026 | 22:01:54,252 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:01:54,252 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:01:54,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:01:54,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:01:54,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:01:54,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:01:55,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:02:42,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:02:42,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:02:42,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:264704 +02 二月 2026 | 22:02:43,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:02:45,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:264704 +02 二月 2026 | 22:02:45,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:02:45,580 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:02:45,697 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:02:45,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:02:45,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:02:46,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:02:46,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:02:46,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:02:46,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:02:46,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:02:46,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:02:46,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:02:47,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6be8b7e6 +02 二月 2026 | 22:02:47,885 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:02:47,885 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:02:47,886 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:02:47,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:02:47,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:02:48,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:04:11,002 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,014 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,016 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,018 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,018 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,018 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:11,021 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:04:25,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:04:32,700 | ERROR | Thread-90 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-99 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-88 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-94 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-98 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-91 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-95 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-93 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-101 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-87 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-97 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-92 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-96 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-89 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,700 | ERROR | Thread-100 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,703 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,707 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,707 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,707 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,700 | ERROR | Thread-102 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:04:32,708 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,709 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,709 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,709 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,709 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,710 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,710 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,710 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,710 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,711 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,713 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:32,713 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:04:45,539 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:05:02,706 | ERROR | Thread-106 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:05:02,707 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:05:15,538 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:05:32,464 | ERROR | Thread-110 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:05:32,466 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:05:45,539 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:06:02,482 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:06:02,485 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:06:15,552 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:06:32,485 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:06:32,487 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:06:45,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:07:02,491 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:07:02,492 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:07:15,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:07:32,510 | ERROR | Thread-126 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:07:32,512 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:07:45,542 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:08:02,541 | ERROR | Thread-130 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:08:02,544 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:08:15,565 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:08:32,518 | ERROR | Thread-134 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:08:32,521 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:08:45,538 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:09:02,527 | ERROR | Thread-139 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:09:02,528 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:09:15,543 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:09:32,533 | ERROR | Thread-143 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:09:32,536 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:09:45,536 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:10:00,589 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:10:00,648 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:10:00,967 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:10:01,206 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:10:06,216 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:53 +02 二月 2026 | 22:10:06,346 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:10:20,827 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:10:20,888 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:10:21,133 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:10:21,383 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:10:26,412 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:54 +02 二月 2026 | 22:10:26,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:10:32,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:371108 +02 二月 2026 | 22:10:32,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:10:32,445 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:10:32,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:10:32,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:10:32,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:10:33,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:10:33,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:10:33,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:10:33,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:10:33,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:10:33,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:10:33,663 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:10:33,903 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2ce9c107 +02 二月 2026 | 22:10:34,721 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:10:34,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:10:34,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:10:34,753 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:10:34,818 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:10:34,961 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:10:35,624 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:15:52,060 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:15:52,060 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:15:52,070 | ERROR | Timer-0 | client.io.ISocket | | General error writing to socket +java.net.SocketException: Software caused connection abort: socket write error + at java.net.SocketOutputStream.socketWrite0(Native Method) + at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:111) + at java.net.SocketOutputStream.write(SocketOutputStream.java:143) + at com.robotcm.taurus.client.io.SocketTcp.__writeSocket(SocketTcp.java:107) + at com.robotcm.taurus.client.io.SocketTcp.send(SocketTcp.java:97) + at com.robotcm.taurus.client.io.IOHandler.onDataWrite(IOHandler.java:229) + at com.robotcm.taurus.client.io.SystemController.sendPingPong(SystemController.java:94) + at com.robotcm.taurus.client.io.LagMonitor.run(LagMonitor.java:98) + at java.util.TimerThread.mainLoop(Timer.java:555) + at java.util.TimerThread.run(Timer.java:505) +02 二月 2026 | 22:15:52,060 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:15:52,073 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:982986 +02 二月 2026 | 22:15:52,073 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:15:52,073 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : SendError +02 二月 2026 | 22:15:52,073 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : SendError +02 二月 2026 | 22:15:52,539 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:15:54,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:982986 +02 二月 2026 | 22:15:54,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:15:54,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:15:54,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:15:54,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:15:54,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:15:55,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:15:55,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:15:55,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:15:55,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:15:55,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:15:55,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:15:55,659 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:15:55,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2ce9c107 +02 二月 2026 | 22:15:56,501 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:15:56,502 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:15:56,502 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:15:56,546 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:15:56,598 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:15:56,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:24:14,560 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,560 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,561 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,564 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,564 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,564 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,564 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,564 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,568 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,568 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,572 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,572 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,572 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,572 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,573 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,573 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,573 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,580 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,580 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,581 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,581 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,582 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,590 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,590 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,590 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,590 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,590 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,590 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,590 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,591 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,591 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,591 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,591 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,591 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,591 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:14,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:24:31,134 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:24:32,566 | ERROR | Thread-302 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-331 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-329 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-285 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-341 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-359 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-349 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-308 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-338 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-353 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-304 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-330 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-350 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-360 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-333 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-348 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-322 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-332 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-337 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-352 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-361 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-311 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-351 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-326 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-323 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-301 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-336 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-334 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-309 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-307 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-317 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-325 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-297 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,566 | ERROR | Thread-296 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,566 | ERROR | Thread-288 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,566 | ERROR | Thread-284 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,566 | ERROR | Thread-312 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,566 | ERROR | Thread-320 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,566 | ERROR | Thread-295 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,569 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,569 | ERROR | Thread-343 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,569 | ERROR | Thread-300 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,569 | ERROR | Thread-340 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,569 | ERROR | Thread-319 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,569 | ERROR | Thread-344 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-316 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-363 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-347 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-354 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-357 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-321 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-345 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-356 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-305 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-287 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-286 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-313 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-318 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-293 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-335 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-299 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-294 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-291 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-298 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,566 | ERROR | Thread-283 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-315 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,566 | ERROR | Thread-292 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-310 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,566 | ERROR | Thread-289 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-290 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-327 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-314 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-306 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-324 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-328 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,568 | ERROR | Thread-346 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-339 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-342 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-364 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-362 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-358 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-355 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-365 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,567 | ERROR | Thread-303 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:24:32,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,584 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,584 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,584 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,584 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,584 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,584 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,584 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,588 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:32,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:24:49,285 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:24:49,343 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:24:49,662 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:24:49,873 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:24:54,826 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:55 +02 二月 2026 | 22:24:54,964 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:25:02,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:371108 +02 二月 2026 | 22:25:02,074 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:25:02,273 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:25:02,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:25:02,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:25:02,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:25:02,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:25:03,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:25:03,169 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:25:03,169 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:25:03,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:25:03,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:25:03,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:25:03,745 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4bc23464 +02 二月 2026 | 22:25:04,564 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:25:04,564 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:25:04,564 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:25:04,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:25:04,638 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:25:04,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:25:05,525 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:25:06,463 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:25:06,463 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:25:06,463 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:539966 +02 二月 2026 | 22:25:06,789 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:25:08,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:539966 +02 二月 2026 | 22:25:08,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:25:09,329 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:25:09,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:25:09,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:25:09,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:25:10,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:25:11,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:25:11,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:25:11,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:25:11,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:25:11,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:25:11,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:25:12,608 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:25:12,613 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:25:12,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4bc23464 +02 二月 2026 | 22:25:15,398 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:25:15,398 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:25:15,398 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:25:15,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:25:15,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:25:16,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:25:26,612 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:25:26,612 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:25:26,612 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:25:39,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:25:52,749 | ERROR | Thread-42 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:25:52,749 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:25:52,750 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:25:52,753 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:25:52,755 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:25:52,756 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:25:59,946 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:26:25,547 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:26:25,598 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:26:26,831 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:26:27,145 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:26:31,675 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:56 +02 二月 2026 | 22:26:31,815 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:26:36,524 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:371108 +02 二月 2026 | 22:26:36,586 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:26:36,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:26:36,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:26:36,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:26:36,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:26:37,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:26:37,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:26:37,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:26:37,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:26:37,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:26:37,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:26:37,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:26:37,938 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b52c42 +02 二月 2026 | 22:26:38,671 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:26:38,671 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:26:38,671 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:26:38,737 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:26:38,774 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:26:38,936 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:26:39,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:26:40,620 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:26:40,620 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:26:40,620 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:197355 +02 二月 2026 | 22:26:40,990 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:26:42,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:197355 +02 二月 2026 | 22:26:42,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:26:42,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:26:42,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:26:42,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:26:42,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:26:43,246 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:26:43,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:26:43,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:26:43,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:26:43,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:26:43,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:26:43,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:26:43,759 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b52c42 +02 二月 2026 | 22:26:44,540 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:26:44,541 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:26:44,541 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:26:44,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:26:44,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:26:44,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:26:53,362 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:27:19,392 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:27:20,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:27:20,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:27:20,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:27:20,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:27:20,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:27:37,726 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:27:37,787 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:27:38,166 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:27:38,427 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:27:42,600 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:57 +02 二月 2026 | 22:27:42,708 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:27:47,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:371108 +02 二月 2026 | 22:27:47,076 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:27:47,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:27:47,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:27:47,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:27:47,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:27:47,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:27:48,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:27:48,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:27:48,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:27:48,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:27:48,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:27:48,223 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:27:48,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2d30b3af +02 二月 2026 | 22:27:49,221 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:27:49,221 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:27:49,221 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:27:49,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:27:49,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:27:49,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:27:50,233 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:27:51,102 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:27:51,102 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:27:51,102 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:754059 +02 二月 2026 | 22:27:51,504 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:27:53,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:754059 +02 二月 2026 | 22:27:53,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:27:53,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:27:53,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:27:53,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:27:53,396 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:27:53,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:27:53,835 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:27:53,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:27:53,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:27:53,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:27:53,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:27:54,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:27:54,268 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2d30b3af +02 二月 2026 | 22:27:55,092 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:27:55,093 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:27:55,093 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:27:55,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:27:55,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:27:55,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 127.0.0.1] +02 二月 2026 | 22:29:30,424 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:29:30,428 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:29:33,235 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:29:33,294 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:29:33,597 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:29:33,888 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:29:38,450 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:58 +02 二月 2026 | 22:29:38,616 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:29:44,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:371108 +02 二月 2026 | 22:29:44,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:29:44,397 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:29:44,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:29:44,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:29:44,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:29:45,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:29:45,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:29:45,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:29:45,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:29:45,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:29:45,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:29:45,412 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:29:45,774 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@144e9483 +02 二月 2026 | 22:29:46,606 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:29:46,607 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:29:46,607 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:29:46,675 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:29:46,712 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:29:46,858 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +02 二月 2026 | 22:29:47,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:29:48,682 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:29:48,682 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:29:48,682 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:681827 +02 二月 2026 | 22:29:49,067 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:29:50,838 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:681827 +02 二月 2026 | 22:29:50,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:29:51,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:29:51,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:29:51,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:29:51,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:29:51,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:29:51,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:29:51,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:29:51,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:29:51,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:29:51,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:29:51,964 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:29:52,238 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@144e9483 +02 二月 2026 | 22:29:53,067 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:29:53,067 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:29:53,067 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:29:53,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:29:53,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:29:53,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +02 二月 2026 | 22:29:56,689 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:30:02,616 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:30:02,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:30:13,637 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:30:32,376 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:30:32,378 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:30:43,642 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:31:02,393 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:31:02,394 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:31:13,646 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:32:36,856 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:32:36,916 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:32:37,158 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:32:37,379 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:32:42,158 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:59 +02 二月 2026 | 22:32:42,318 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:32:45,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:32:46,475 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:32:46,475 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:32:46,475 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:314623 +02 二月 2026 | 22:32:46,869 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:32:48,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:314623 +02 二月 2026 | 22:32:48,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:32:48,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:32:48,982 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:32:48,982 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:32:48,982 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:32:49,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:32:49,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:32:49,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:32:49,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5000000 +02 二月 2026 | 22:32:49,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:32:49,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:32:49,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:32:49,976 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@193c4694 +02 二月 2026 | 22:32:50,834 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:32:50,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:32:50,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:32:50,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:32:50,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:32:51,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +02 二月 2026 | 22:33:02,191 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:33:07,157 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:33:17,157 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:33:27,158 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:33:37,158 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:33:45,081 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:33:45,139 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:33:45,431 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:33:45,668 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:33:50,687 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:60 +02 二月 2026 | 22:33:50,832 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:33:53,640 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:33:54,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:33:54,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:33:54,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:146225 +02 二月 2026 | 22:33:55,005 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:33:56,706 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:146225 +02 二月 2026 | 22:33:56,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:33:56,965 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:33:57,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 22:33:57,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +02 二月 2026 | 22:34:09,957 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:34:15,431 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:34:25,432 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:34:29,081 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:34:29,138 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:34:29,444 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:34:29,657 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:34:34,147 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:61 +02 二月 2026 | 22:34:34,281 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:34:37,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:146225 +02 二月 2026 | 22:34:37,085 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:34:37,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:34:37,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 22:34:37,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +02 二月 2026 | 22:34:38,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:34:39,276 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:34:39,276 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:34:39,276 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:673334 +02 二月 2026 | 22:34:39,584 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:34:41,223 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:673334 +02 二月 2026 | 22:34:41,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:34:41,511 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:34:41,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 22:34:41,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +02 二月 2026 | 22:39:03,351 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:39:03,357 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:39:07,362 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:39:07,423 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:39:07,771 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:39:07,996 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:39:12,707 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:62 +02 二月 2026 | 22:39:12,913 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:39:15,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:673334 +02 二月 2026 | 22:39:15,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:39:16,139 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:39:16,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:39:16,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:39:16,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:39:16,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:39:16,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:39:16,864 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:39:16,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 22:39:16,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:39:16,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:39:17,037 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:39:17,266 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@ddb93e3 +02 二月 2026 | 22:39:18,035 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:39:18,035 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:39:18,035 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:39:18,078 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:39:18,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:39:18,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:39:19,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:39:20,067 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:39:20,067 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:39:20,067 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:225820 +02 二月 2026 | 22:39:20,419 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:39:22,141 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:225820 +02 二月 2026 | 22:39:22,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:39:22,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:39:22,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:39:22,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:39:22,546 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:39:22,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:39:23,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:39:23,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:39:23,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 22:39:23,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:39:23,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:39:23,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:39:23,533 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@ddb93e3 +02 二月 2026 | 22:39:24,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:39:24,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:39:24,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:39:24,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:39:24,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:39:24,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:39:40,913 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:39:40,916 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:39:40,988 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:39:40,989 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:39:40,992 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:39:46,251 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:39:46,304 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:39:46,540 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:39:46,759 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:39:51,147 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:63 +02 二月 2026 | 22:39:51,298 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:39:54,188 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:673334 +02 二月 2026 | 22:39:54,224 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:39:54,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:39:54,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:39:54,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:39:54,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:39:55,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:39:55,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:39:55,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:39:55,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 22:39:55,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:39:55,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:39:55,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:39:55,793 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@c22387f +02 二月 2026 | 22:39:56,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:39:56,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:39:56,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:39:56,511 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:39:56,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:39:56,724 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:39:57,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:39:58,368 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:39:58,368 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:39:58,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:517519 +02 二月 2026 | 22:39:58,708 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:40:00,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:517519 +02 二月 2026 | 22:40:00,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:40:00,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:40:00,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:40:00,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:40:00,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:40:01,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:40:01,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:40:01,188 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:40:01,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 22:40:01,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:40:01,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:40:01,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:40:01,540 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@c22387f +02 二月 2026 | 22:40:02,246 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:40:02,246 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:40:02,246 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:40:02,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:40:02,322 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:40:02,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:40:11,420 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:40:11,424 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:40:11,493 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:40:11,498 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:40:26,541 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:40:31,059 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:40:31,059 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:40:31,062 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:40:31,062 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:40:46,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:47:59,663 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 22:47:59,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 22:48:03,680 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:48:03,731 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:48:03,985 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:48:04,219 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:48:08,499 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:64 +02 二月 2026 | 22:48:08,612 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:48:11,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:517519 +02 二月 2026 | 22:48:12,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:48:12,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 22:48:12,308 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:48:12,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:48:12,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:48:12,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:48:12,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:48:12,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:48:12,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 22:48:12,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:48:12,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:48:13,139 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:48:13,372 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@99bb4d7 +02 二月 2026 | 22:48:14,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:48:14,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:48:14,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:48:14,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:48:14,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:48:14,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:48:15,119 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:48:16,033 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:48:16,034 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:48:16,034 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:814637 +02 二月 2026 | 22:48:16,354 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:48:18,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:814637 +02 二月 2026 | 22:48:18,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:48:18,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:48:18,521 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 22:48:18,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:48:24,830 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:517519 +02 二月 2026 | 22:48:24,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 22:48:25,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 22:48:25,183 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 22:48:25,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:48:26,000 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:48:26,818 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:48:26,818 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:48:26,818 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:184314 +02 二月 2026 | 22:48:27,131 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:48:29,029 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:184314 +02 二月 2026 | 22:48:29,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:48:29,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:48:29,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 22:48:29,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:48:32,728 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 22:48:36,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:517519 +02 二月 2026 | 22:48:36,245 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 22:48:36,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 22:48:36,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 22:48:36,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:48:37,359 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:48:38,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:48:38,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:48:38,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:231309 +02 二月 2026 | 22:48:38,432 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:48:40,088 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:231309 +02 二月 2026 | 22:48:40,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:48:40,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:48:40,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 22:48:40,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 22:59:23,288 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 22:59:23,352 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 22:59:23,631 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 22:59:23,857 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 22:59:28,295 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:65 +02 二月 2026 | 22:59:28,422 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 22:59:31,470 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 22:59:32,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 22:59:32,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 22:59:32,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:197276 +02 二月 2026 | 22:59:32,759 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 22:59:34,380 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:197276 +02 二月 2026 | 22:59:34,418 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:59:34,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 22:59:34,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 22:59:34,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 22:59:34,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 22:59:35,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 22:59:35,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 22:59:35,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 22:59:35,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 22:59:35,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 22:59:35,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 22:59:35,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 22:59:35,773 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2d8868d4 +02 二月 2026 | 22:59:36,554 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 22:59:36,554 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 22:59:36,554 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 22:59:36,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 22:59:36,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 22:59:36,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:06:18,586 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:06:18,645 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:06:18,960 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:06:19,181 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:06:23,578 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:66 +02 二月 2026 | 23:06:23,741 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:06:27,049 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:197276 +02 二月 2026 | 23:06:27,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:06:27,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:06:27,436 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:06:27,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:06:28,282 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:06:29,302 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:06:29,302 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:06:29,302 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:481895 +02 二月 2026 | 23:06:29,732 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:06:31,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:481895 +02 二月 2026 | 23:06:31,658 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:06:31,861 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:06:32,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:06:32,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:06:32,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:06:32,379 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:06:32,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:06:32,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:06:32,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:06:32,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:06:32,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:06:32,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:06:33,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@575db841 +02 二月 2026 | 23:06:33,812 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:06:33,812 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:06:33,812 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:06:33,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:06:33,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:06:34,129 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:06:38,959 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:06:48,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:06:58,959 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:07:08,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:07:18,959 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:07:28,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:07:38,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:07:48,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:07:58,783 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:07:58,847 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:07:59,094 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:07:59,308 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:08:04,210 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:67 +02 二月 2026 | 23:08:04,329 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:08:07,450 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:481895 +02 二月 2026 | 23:08:07,489 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:08:07,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:08:07,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:08:07,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:08:08,649 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:08:09,562 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:08:09,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:08:09,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:794453 +02 二月 2026 | 23:08:09,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:08:11,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:794453 +02 二月 2026 | 23:08:11,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:08:11,754 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:08:11,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:08:11,977 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:08:22,042 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:08:22,100 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:08:22,435 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:08:22,686 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:08:27,186 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:68 +02 二月 2026 | 23:08:27,346 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:08:29,899 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:794453 +02 二月 2026 | 23:08:29,938 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:08:30,128 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:08:30,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:08:30,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:08:30,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:08:30,662 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:08:30,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:08:30,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:08:30,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:08:30,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:08:30,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:08:30,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:08:31,310 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5150a990 +02 二月 2026 | 23:08:32,032 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:08:32,032 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:08:32,032 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:08:32,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:08:32,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:08:32,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:08:33,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:08:34,031 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:08:34,032 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:08:34,032 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:233490 +02 二月 2026 | 23:08:34,402 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:08:36,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:233490 +02 二月 2026 | 23:08:36,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:08:36,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:08:36,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:08:36,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:08:36,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:08:36,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:08:36,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:08:37,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:08:37,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:08:37,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:08:37,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:08:37,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:08:37,374 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5150a990 +02 二月 2026 | 23:08:38,204 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:08:38,204 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:08:38,204 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:08:38,246 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:08:38,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:08:38,445 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:08:42,434 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:08:52,435 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:09:02,435 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:09:12,436 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:09:22,436 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:09:32,434 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:09:42,435 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:09:53,242 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:09:53,293 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:09:53,586 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:09:53,815 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:09:58,146 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:69 +02 二月 2026 | 23:09:58,254 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:10:00,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:794453 +02 二月 2026 | 23:10:00,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:10:01,162 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:10:01,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:10:01,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:10:01,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:10:01,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:10:01,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:10:02,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:10:02,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:10:02,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:10:02,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:10:02,181 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:10:02,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1b088f3e +02 二月 2026 | 23:10:03,193 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:10:03,194 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:10:03,194 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:10:03,228 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:10:03,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:10:03,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:10:04,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:10:05,141 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:10:05,141 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:10:05,141 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:319552 +02 二月 2026 | 23:10:05,462 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:10:07,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:319552 +02 二月 2026 | 23:10:07,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:10:07,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:10:07,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:10:07,449 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:10:07,449 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:10:07,938 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:10:08,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:10:08,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:10:08,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:10:08,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:10:08,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:10:08,256 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:10:08,493 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1b088f3e +02 二月 2026 | 23:10:09,287 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:10:09,287 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:10:09,287 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:10:09,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:10:09,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:10:09,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:10:13,585 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:10:23,587 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:10:33,587 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:10:43,586 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:10:53,585 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:11:03,587 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:11:13,586 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:11:23,585 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:11:31,015 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:11:31,073 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:11:31,370 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:11:31,582 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:11:36,165 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:70 +02 二月 2026 | 23:11:36,379 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:11:39,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:319552 +02 二月 2026 | 23:11:39,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:11:39,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:11:40,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:11:40,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:11:40,037 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:11:40,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:11:40,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:11:40,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:11:40,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:11:40,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:11:40,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:11:40,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:11:41,058 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@39feea6e +02 二月 2026 | 23:11:41,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:11:41,781 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:11:41,781 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:11:41,817 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:11:41,858 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:11:42,019 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:11:42,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:11:43,544 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:11:43,544 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:11:43,544 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:125017 +02 二月 2026 | 23:11:43,908 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:11:45,772 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:125017 +02 二月 2026 | 23:11:45,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:11:45,986 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:11:46,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:11:46,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:11:46,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:11:46,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:11:46,588 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:11:46,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:11:46,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:11:46,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:11:46,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:11:46,774 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:11:46,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@39feea6e +02 二月 2026 | 23:11:47,619 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:11:47,620 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:11:47,620 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:11:47,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:11:47,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:11:47,885 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:11:51,370 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:12:01,370 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:12:11,370 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:12:21,370 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:12:32,500 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:12:32,552 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:12:32,841 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:12:33,093 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:12:37,923 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:71 +02 二月 2026 | 23:12:38,081 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:12:40,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:794453 +02 二月 2026 | 23:12:40,963 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:12:41,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:12:41,315 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:12:41,315 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:12:41,315 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:12:41,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:12:41,956 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:12:41,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:12:41,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:12:41,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:12:41,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:12:42,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:12:42,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7ea02ec1 +02 二月 2026 | 23:12:43,150 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:12:43,150 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:12:43,151 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:12:43,188 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:12:43,242 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:12:43,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:12:44,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:12:45,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:12:45,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:12:45,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:792441 +02 二月 2026 | 23:12:45,594 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:12:47,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:792441 +02 二月 2026 | 23:12:47,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:12:47,520 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:12:47,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:12:47,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:12:47,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:12:48,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:12:48,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:12:48,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:12:48,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:12:48,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:12:48,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:12:48,442 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:12:48,682 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7ea02ec1 +02 二月 2026 | 23:12:49,468 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:12:49,468 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:12:49,468 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:12:49,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:12:49,549 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:12:49,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:12:53,180 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:13:02,841 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:13:12,840 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:13:22,841 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:13:32,840 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:13:42,842 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:13:52,840 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:14:04,309 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:14:04,368 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:14:04,706 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:14:04,945 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:14:09,407 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:72 +02 二月 2026 | 23:14:09,525 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:14:12,638 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:792441 +02 二月 2026 | 23:14:12,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:14:12,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:14:12,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:14:13,052 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:14:13,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:14:14,734 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:14:14,734 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:14:14,734 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:990769 +02 二月 2026 | 23:14:15,040 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:14:16,712 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:990769 +02 二月 2026 | 23:14:16,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:14:16,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:14:17,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:14:17,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:14:17,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:14:17,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:14:17,467 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:14:17,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:14:17,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:14:17,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:14:17,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:14:17,643 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:14:17,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79090960 +02 二月 2026 | 23:14:21,393 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:14:21,447 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:14:21,734 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:14:21,977 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:14:26,716 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:73 +02 二月 2026 | 23:14:26,880 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:14:30,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:990769 +02 二月 2026 | 23:14:30,091 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:14:30,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:14:30,460 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:14:30,460 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:14:30,460 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:14:30,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:14:31,250 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:14:31,298 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:14:31,298 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:14:31,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:14:31,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:14:31,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:14:31,837 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@11fc060a +02 二月 2026 | 23:14:32,713 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:14:32,713 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:14:32,713 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:14:32,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:14:32,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:14:32,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:14:33,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:14:34,737 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:14:34,737 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:14:34,738 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:697944 +02 二月 2026 | 23:14:35,110 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:14:36,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:697944 +02 二月 2026 | 23:14:36,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:14:37,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:14:37,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:14:37,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:14:37,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:14:37,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:14:37,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:14:38,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:14:38,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:14:38,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:14:38,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:14:38,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:14:38,455 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@11fc060a +02 二月 2026 | 23:14:39,273 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:14:39,273 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:14:39,273 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:14:39,308 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:14:39,343 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:14:39,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:14:42,927 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:14:51,733 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:15:01,734 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:15:11,734 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:15:21,733 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:15:31,735 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:15:41,733 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:15:51,734 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:16:01,734 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:16:11,734 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:16:21,734 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:16:31,734 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:16:41,734 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:16:51,733 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:17:01,735 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:17:11,733 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:17:25,210 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:17:25,264 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:17:25,560 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:17:25,786 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:17:30,007 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:74 +02 二月 2026 | 23:17:30,129 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:17:33,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:990769 +02 二月 2026 | 23:17:33,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:17:33,511 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:17:33,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:17:33,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:17:33,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:17:34,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:17:34,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:17:34,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:17:34,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:17:34,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:17:34,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:17:34,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:17:34,667 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@62e20abc +02 二月 2026 | 23:17:35,456 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:17:35,457 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:17:35,457 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:17:35,499 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:17:35,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:17:35,727 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:17:36,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:17:37,402 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:17:37,403 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:17:37,403 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:286495 +02 二月 2026 | 23:17:37,730 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:17:39,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:286495 +02 二月 2026 | 23:17:39,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:17:39,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:17:39,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:17:39,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:17:39,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:17:40,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:17:40,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:17:40,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:17:40,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:17:40,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:17:40,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:17:40,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:17:40,697 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@62e20abc +02 二月 2026 | 23:17:41,455 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:17:41,455 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:17:41,455 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:17:41,494 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:17:41,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:17:41,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:17:45,560 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:17:55,561 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:18:05,560 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:18:15,561 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:18:24,996 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:18:25,048 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:18:25,279 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:18:25,501 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:18:30,034 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:75 +02 二月 2026 | 23:18:30,171 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:18:33,712 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:286495 +02 二月 2026 | 23:18:33,753 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:18:34,006 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:18:34,152 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:18:34,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:18:34,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:18:34,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:18:34,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:18:34,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:18:34,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:18:34,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:18:34,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:18:34,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:18:35,237 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5704d85 +02 二月 2026 | 23:18:36,115 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:18:36,116 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:18:36,116 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:18:36,152 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:18:36,195 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:18:36,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:18:37,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:18:38,242 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:18:38,242 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:18:38,242 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:205217 +02 二月 2026 | 23:18:38,651 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:18:40,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:205217 +02 二月 2026 | 23:18:40,399 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:18:40,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:18:40,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:18:40,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:18:40,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:18:41,090 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:18:41,216 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:18:41,249 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:18:41,250 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:18:41,250 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:18:41,250 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:18:41,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:18:41,628 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5704d85 +02 二月 2026 | 23:18:42,549 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:18:42,550 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:18:42,550 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:18:42,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:18:42,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:18:42,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:18:46,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:18:55,278 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:20:13,518 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:20:13,571 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:20:13,945 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:20:14,218 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:20:18,704 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:76 +02 二月 2026 | 23:20:18,874 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:20:21,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:990769 +02 二月 2026 | 23:20:22,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:20:22,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:20:22,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:20:22,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:20:22,354 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:20:22,837 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:20:22,949 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:20:23,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:20:23,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:20:23,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:20:23,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:20:23,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:20:23,425 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@38a625ac +02 二月 2026 | 23:20:24,192 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:20:24,193 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:20:24,193 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:20:24,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:20:24,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:20:24,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:20:25,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:20:26,145 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:20:26,145 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:20:26,145 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:641330 +02 二月 2026 | 23:20:26,485 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:20:28,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:641330 +02 二月 2026 | 23:20:28,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:20:28,492 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:20:28,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:20:28,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:20:28,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:20:28,955 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:20:29,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:20:29,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:20:29,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:20:29,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:20:29,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:20:29,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:20:29,491 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@38a625ac +02 二月 2026 | 23:20:30,327 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:20:30,328 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:20:30,328 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:20:30,374 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:20:30,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:20:30,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:20:33,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:20:43,943 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:20:53,944 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:21:26,850 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:21:26,898 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:21:27,209 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:21:27,440 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:21:32,513 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:77 +02 二月 2026 | 23:21:32,664 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:21:36,085 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:641330 +02 二月 2026 | 23:21:36,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:21:36,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:21:36,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:21:36,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:21:37,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:21:38,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:21:38,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:21:38,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:729444 +02 二月 2026 | 23:21:38,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:21:40,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:729444 +02 二月 2026 | 23:21:40,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:21:40,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:21:40,619 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:21:40,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:21:47,208 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:21:57,209 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:22:07,209 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:22:17,208 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:22:27,208 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:22:37,208 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:22:46,293 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:22:46,341 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:22:46,639 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:22:46,864 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:22:51,448 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:78 +02 二月 2026 | 23:22:51,630 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:22:55,481 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:641330 +02 二月 2026 | 23:22:55,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:22:55,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:22:55,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:22:55,886 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:22:56,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:22:58,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:22:58,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:22:58,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:449143 +02 二月 2026 | 23:22:58,990 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:23:00,846 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:449143 +02 二月 2026 | 23:23:00,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:23:01,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:23:01,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:23:01,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:23:06,639 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:23:16,638 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:23:26,638 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:23:36,638 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:23:46,952 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:23:47,007 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:23:47,264 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:23:47,513 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:23:52,046 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:79 +02 二月 2026 | 23:23:52,187 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:23:55,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:990769 +02 二月 2026 | 23:23:56,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:23:56,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:23:56,312 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:23:56,312 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:23:56,312 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:23:56,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:23:56,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:23:56,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:23:56,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:23:56,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:23:56,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:23:57,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:23:57,297 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@60f1a0c6 +02 二月 2026 | 23:23:58,005 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:23:58,005 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:23:58,005 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:23:58,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:23:58,149 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:23:58,302 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:23:59,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:24:00,554 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:24:00,554 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:24:00,554 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:148612 +02 二月 2026 | 23:24:01,011 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:24:03,059 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:148612 +02 二月 2026 | 23:24:03,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:24:03,312 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:24:03,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:24:03,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:24:03,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:24:03,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:24:03,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:24:03,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:24:03,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:24:03,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:24:03,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:24:04,063 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:24:04,390 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@60f1a0c6 +02 二月 2026 | 23:24:05,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:24:05,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:24:05,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:24:05,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:24:05,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:24:05,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:24:08,806 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:24:17,264 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:24:27,264 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:24:30,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:148612 +02 二月 2026 | 23:24:30,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:24:30,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:24:31,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:24:31,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:24:31,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:24:31,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:24:31,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:24:31,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:24:31,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:24:31,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:24:31,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:24:31,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:24:32,012 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@60f1a0c6 +02 二月 2026 | 23:24:32,695 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:24:32,695 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:24:32,695 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:24:32,727 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:24:32,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:24:32,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:24:33,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:24:34,317 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:24:34,317 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:24:34,317 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:737728 +02 二月 2026 | 23:24:34,685 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:24:36,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:737728 +02 二月 2026 | 23:24:36,387 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:24:36,593 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:24:36,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:24:36,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:24:40,207 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:24:41,084 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 23:24:41,089 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 23:24:53,589 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:24:53,637 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:24:53,933 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:24:54,172 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:24:58,928 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:80 +02 二月 2026 | 23:24:59,099 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:25:03,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:148612 +02 二月 2026 | 23:25:03,201 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:25:03,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:25:03,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:25:03,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:25:04,549 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:25:05,431 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:25:05,431 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:25:05,431 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:332707 +02 二月 2026 | 23:25:05,957 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:25:07,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:332707 +02 二月 2026 | 23:25:07,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:25:07,946 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:25:08,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:25:08,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:25:13,934 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:25:23,933 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:25:33,932 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:25:43,932 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:25:53,933 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:26:03,933 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:26:13,934 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:26:23,933 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:26:33,933 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:26:43,932 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:26:49,758 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:26:49,819 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:26:50,134 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:26:50,379 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:26:54,797 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:81 +02 二月 2026 | 23:26:54,927 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:26:59,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:990769 +02 二月 2026 | 23:26:59,245 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:26:59,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:26:59,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:26:59,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:26:59,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:27:00,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:27:00,214 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:27:00,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:27:00,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:27:00,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:27:00,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:27:00,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:27:00,650 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@604aa546 +02 二月 2026 | 23:27:01,488 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:27:01,488 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:27:01,488 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:27:01,524 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:27:01,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:27:01,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:27:02,620 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:27:03,424 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:27:03,424 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:27:03,425 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:355872 +02 二月 2026 | 23:27:03,811 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:27:05,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:355872 +02 二月 2026 | 23:27:05,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:27:05,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:27:05,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:27:05,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:27:05,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:27:06,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:27:06,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:27:06,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:27:06,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:27:06,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:27:06,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:27:06,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:27:06,872 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@604aa546 +02 二月 2026 | 23:27:07,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:27:07,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:27:07,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:27:07,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:27:07,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:27:07,932 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:27:11,130 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 23:27:11,135 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 23:27:11,354 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:27:11,354 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:27:30,133 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:27:31,175 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 23:27:31,175 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +02 二月 2026 | 23:27:31,177 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 23:27:31,177 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +02 二月 2026 | 23:27:34,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:355872 +02 二月 2026 | 23:27:34,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:27:34,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +02 二月 2026 | 23:27:34,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:27:34,549 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:27:35,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:27:35,954 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:27:35,954 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:27:35,954 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:718077 +02 二月 2026 | 23:27:36,302 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:27:38,071 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:718077 +02 二月 2026 | 23:27:38,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:27:38,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:27:38,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:27:38,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:27:38,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:27:38,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:27:38,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:27:39,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:27:39,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:27:39,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:27:39,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:27:39,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:27:39,464 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@604aa546 +02 二月 2026 | 23:27:40,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:27:40,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:27:40,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:27:40,293 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:27:40,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:27:40,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:27:50,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:28:01,334 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:28:01,387 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:28:01,671 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:28:01,901 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:28:06,336 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:82 +02 二月 2026 | 23:28:06,507 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:28:10,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:990769 +02 二月 2026 | 23:28:10,675 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:28:10,882 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:28:11,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:28:11,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:28:11,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:28:11,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:28:11,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:28:11,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:28:11,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:28:11,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:28:11,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:28:12,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:28:12,305 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15c1d823 +02 二月 2026 | 23:28:13,031 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:28:13,031 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:28:13,031 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:28:13,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:28:13,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:28:13,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:28:14,009 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:28:14,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:28:14,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:28:14,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:105250 +02 二月 2026 | 23:28:15,197 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:28:16,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:105250 +02 二月 2026 | 23:28:16,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:28:17,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:28:17,256 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:28:17,256 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:28:17,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:28:17,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:28:17,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:28:17,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:28:17,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:28:17,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:28:17,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:28:17,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:28:18,207 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15c1d823 +02 二月 2026 | 23:28:18,894 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:28:18,895 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:28:18,895 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:28:18,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:28:18,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:28:19,165 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:28:22,546 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:28:31,671 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:28:41,671 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:29:11,774 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:29:11,821 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:29:12,087 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:29:12,317 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:29:16,757 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:83 +02 二月 2026 | 23:29:16,895 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:29:19,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:29:20,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:29:20,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:29:20,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:620893 +02 二月 2026 | 23:29:21,119 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:29:22,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:620893 +02 二月 2026 | 23:29:23,029 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:29:23,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:29:23,376 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:29:23,376 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:29:23,376 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:29:23,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:29:23,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:29:23,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:29:23,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:29:23,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:29:23,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:29:24,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:29:24,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@17c105e4 +02 二月 2026 | 23:29:25,219 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:29:25,219 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:29:25,219 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:29:25,256 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:29:25,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:29:25,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:29:32,086 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:29:42,087 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:29:52,088 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:29:54,706 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:620893 +02 二月 2026 | 23:29:54,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:29:55,019 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:29:55,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:29:55,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:29:55,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:29:55,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:29:55,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:29:55,742 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:29:55,742 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:29:55,742 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:29:55,742 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:29:55,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:29:56,141 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@17c105e4 +02 二月 2026 | 23:30:00,697 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +02 二月 2026 | 23:30:00,747 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +02 二月 2026 | 23:30:01,013 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +02 二月 2026 | 23:30:01,255 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +02 二月 2026 | 23:30:05,798 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:84 +02 二月 2026 | 23:30:05,939 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +02 二月 2026 | 23:30:08,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:620893 +02 二月 2026 | 23:30:08,708 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:30:08,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:30:09,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:30:09,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:30:09,999 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:30:10,920 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:30:10,920 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:30:10,920 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:331144 +02 二月 2026 | 23:30:11,337 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:30:13,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:331144 +02 二月 2026 | 23:30:13,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:30:13,282 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:30:13,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:30:13,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:30:16,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:16,799 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:16,799 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:16,799 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:19,012 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:22,013 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:25,013 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:27,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:620893 +02 二月 2026 | 23:30:27,450 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:30:27,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:30:27,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:30:27,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:30:27,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:30:28,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:30:28,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:30:28,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:30:28,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:30:28,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:30:28,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:30:28,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:30:28,789 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@527fc34d +02 二月 2026 | 23:30:29,528 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:30:29,528 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:30:29,528 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:30:29,569 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:30:29,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:30:29,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:30:30,586 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:30:31,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:30:31,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:30:31,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:697134 +02 二月 2026 | 23:30:31,820 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:30:33,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:697134 +02 二月 2026 | 23:30:33,495 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:30:33,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:30:33,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:30:33,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:30:37,205 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:37,205 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:37,205 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:37,205 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:40,013 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:43,013 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:46,013 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +02 二月 2026 | 23:30:48,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:620893 +02 二月 2026 | 23:30:48,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:30:48,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +02 二月 2026 | 23:30:49,116 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +02 二月 2026 | 23:30:49,116 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +02 二月 2026 | 23:30:49,116 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +02 二月 2026 | 23:30:49,431 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +02 二月 2026 | 23:30:49,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +02 二月 2026 | 23:30:49,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +02 二月 2026 | 23:30:49,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +02 二月 2026 | 23:30:49,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +02 二月 2026 | 23:30:49,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +02 二月 2026 | 23:30:49,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +02 二月 2026 | 23:30:50,013 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@527fc34d +02 二月 2026 | 23:30:50,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +02 二月 2026 | 23:30:50,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +02 二月 2026 | 23:30:50,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +02 二月 2026 | 23:30:50,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +02 二月 2026 | 23:30:50,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +02 二月 2026 | 23:30:50,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +02 二月 2026 | 23:30:51,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +02 二月 2026 | 23:30:52,632 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +02 二月 2026 | 23:30:52,632 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +02 二月 2026 | 23:30:52,632 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:862786 +02 二月 2026 | 23:30:52,956 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +02 二月 2026 | 23:30:54,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:862786 +02 二月 2026 | 23:30:54,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:30:54,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +02 二月 2026 | 23:30:54,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +02 二月 2026 | 23:30:54,929 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] diff --git a/robots/robotchangma/src/main/webapp/logs/web_main.log.2026-02-03 b/robots/robotchangma/src/main/webapp/logs/web_main.log.2026-02-03 new file mode 100644 index 0000000..2a116be --- /dev/null +++ b/robots/robotchangma/src/main/webapp/logs/web_main.log.2026-02-03 @@ -0,0 +1,25424 @@ +03 二月 2026 | 03:42:46,538 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 03:42:46,604 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 03:42:46,922 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 03:42:47,153 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 03:42:51,743 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:85 +03 二月 2026 | 03:42:51,895 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:42:54,591 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:42:55,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:42:55,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:42:55,471 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:838360 +03 二月 2026 | 03:42:55,843 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:42:57,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:838360 +03 二月 2026 | 03:42:57,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:42:57,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:42:57,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:42:57,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:42:57,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:42:58,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:42:58,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:42:58,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:42:58,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +03 二月 2026 | 03:42:58,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:42:58,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:42:58,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:42:58,729 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@14d205f5 +03 二月 2026 | 03:42:59,466 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:42:59,466 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:42:59,466 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:42:59,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:42:59,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:42:59,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:43:03,067 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:03,067 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:03,067 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:03,067 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:03,079 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 03:43:03,205 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 03:43:04,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:07,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:10,921 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:13,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:16,291 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:838360 +03 二月 2026 | 03:43:16,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 03:43:16,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 03:43:16,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:43:16,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:43:16,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:43:17,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:43:17,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:43:17,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:43:17,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4999000 +03 二月 2026 | 03:43:17,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:43:17,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:43:17,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:43:17,574 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@14d205f5 +03 二月 2026 | 03:43:18,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:43:18,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:43:18,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:43:18,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:43:18,398 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:43:18,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:43:19,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:43:19,989 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:43:19,989 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:43:19,991 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:512424 +03 二月 2026 | 03:43:20,367 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:43:22,062 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:512424 +03 二月 2026 | 03:43:22,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:43:22,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:43:22,412 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 03:43:22,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:43:25,821 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:25,821 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:25,822 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:25,825 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 03:43:25,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:25,951 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 03:43:28,143 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.246, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=618777000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 03:43:28,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:29,190 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 03:43:29,606 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 03:43:29,834 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 03:43:29,932 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@39166d8e +03 二月 2026 | 03:43:29,932 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 102, 106, 201, 109, 105, 202, 103, 108, 106, 206, 106, 206, 207] +03 二月 2026 | 03:43:29,933 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:43:29,933 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 03:43:29,933 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:43:29,933 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 03:43:31,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:32,905 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 106, 201, 109, 105, 202, 108, 106, 206, 106, 206] +03 二月 2026 | 03:43:32,905 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:43:32,905 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103] +03 二月 2026 | 03:43:32,905 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:43:32,905 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 208, 206] +03 二月 2026 | 03:43:34,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:36,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 106, 201, 109, 105, 202, 108, 106, 106, 206, 101] +03 二月 2026 | 03:43:36,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:43:36,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103] +03 二月 2026 | 03:43:36,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:43:36,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 208, 206, 207, 208, 102, 103] +03 二月 2026 | 03:43:37,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:512424 +03 二月 2026 | 03:43:37,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:43:37,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:43:37,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 03:43:37,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:43:38,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:43:38,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:43:38,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:43:38,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:375549 +03 二月 2026 | 03:43:39,244 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:43:39,540 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 106, 201, 105, 202, 106, 106, 206] +03 二月 2026 | 03:43:39,540 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:43:39,540 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103, 107, 108, 109] +03 二月 2026 | 03:43:39,540 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:43:39,540 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 107, 208, 206, 207, 208, 102, 103, 102, 103] +03 二月 2026 | 03:43:40,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:375549 +03 二月 2026 | 03:43:40,990 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:43:41,168 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:43:41,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 03:43:41,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:43:41,845 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 106, 201, 105, 202, 106, 106, 209] +03 二月 2026 | 03:43:41,845 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:43:41,845 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103, 107, 108, 109] +03 二月 2026 | 03:43:41,845 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:43:41,845 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 102, 206, 208, 206, 207, 208, 102, 103, 102, 103, 108, 109] +03 二月 2026 | 03:43:43,381 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 106, 201, 105, 202, 106, 106, 207] +03 二月 2026 | 03:43:43,381 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:43:43,381 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103, 107, 108, 109] +03 二月 2026 | 03:43:43,381 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:43:43,381 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 102, 109, 206, 209, 208, 206, 207, 208, 102, 103, 102, 103, 108, 109] +03 二月 2026 | 03:43:44,689 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:44,690 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:44,690 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:46,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:49,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:52,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:55,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:43:58,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:512424 +03 二月 2026 | 03:43:58,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:43:58,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:43:58,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:43:58,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:43:58,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:43:58,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:43:59,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:43:59,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:43:59,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5353000 +03 二月 2026 | 03:43:59,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:43:59,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:43:59,272 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:43:59,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@14d205f5 +03 二月 2026 | 03:44:00,251 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:44:00,251 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:44:00,251 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:44:00,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:44:00,322 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:44:00,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:44:01,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:44:01,551 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:44:01,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:44:01,849 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:44:01,849 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:44:01,849 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:454713 +03 二月 2026 | 03:44:02,192 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:44:03,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:454713 +03 二月 2026 | 03:44:03,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:44:03,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:44:04,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:44:04,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:44:04,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:44:04,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:44:04,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:44:04,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:44:04,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5353000 +03 二月 2026 | 03:44:04,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:44:04,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:44:04,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:44:05,005 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@14d205f5 +03 二月 2026 | 03:44:05,746 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:44:05,746 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:44:05,746 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:44:05,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:44:05,817 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:44:05,963 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:44:09,356 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:44:09,358 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:44:09,361 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:44:13,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:44:16,921 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:44:19,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:44:22,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:512424 +03 二月 2026 | 03:44:22,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:44:22,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:44:22,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:44:22,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:44:22,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:44:23,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:44:23,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:44:23,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:44:23,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5353000 +03 二月 2026 | 03:44:23,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:44:23,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:44:23,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:44:23,698 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@14d205f5 +03 二月 2026 | 03:44:24,441 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:44:24,441 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:44:24,441 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:44:24,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:44:24,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:44:24,655 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:44:25,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:44:26,050 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:44:26,050 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:44:26,050 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:931043 +03 二月 2026 | 03:44:26,395 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:44:27,966 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:931043 +03 二月 2026 | 03:44:28,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:44:28,177 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:44:28,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:44:28,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:44:28,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:44:28,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:44:28,796 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:44:28,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:44:28,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5353000 +03 二月 2026 | 03:44:28,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:44:28,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:44:28,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:44:29,213 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@14d205f5 +03 二月 2026 | 03:44:29,955 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:44:29,955 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:44:29,955 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:44:29,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:44:30,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:44:30,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:44:31,554 | ERROR | Thread-42 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:44:31,556 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:44:31,556 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:44:31,557 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:44:31,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:44:31,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:44:33,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:44:33,566 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:44:33,572 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:45:00,371 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 03:45:00,416 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 03:45:00,704 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 03:45:00,924 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 03:45:05,358 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:86 +03 二月 2026 | 03:45:05,496 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:45:08,864 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:931043 +03 二月 2026 | 03:45:08,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:45:09,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:45:09,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:45:09,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:45:09,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:45:09,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:45:09,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:45:09,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:45:09,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5353000 +03 二月 2026 | 03:45:09,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:45:09,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:45:09,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:45:10,166 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@281002be +03 二月 2026 | 03:45:10,804 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:45:10,805 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:45:10,805 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:45:10,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:45:10,882 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:45:11,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:45:11,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:45:12,581 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:45:12,581 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:45:12,581 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:441920 +03 二月 2026 | 03:45:12,936 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:45:14,520 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:441920 +03 二月 2026 | 03:45:14,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:45:14,772 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:45:14,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:45:14,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:45:14,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:45:15,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:45:15,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:45:15,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:45:15,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5353000 +03 二月 2026 | 03:45:15,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:45:15,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:45:15,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:45:15,694 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@281002be +03 二月 2026 | 03:45:16,333 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:45:16,333 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:45:16,333 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:45:16,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:45:16,407 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:45:16,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:45:19,904 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:19,905 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:19,905 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:19,905 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:19,905 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:19,909 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 03:45:20,033 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 03:45:21,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:24,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:27,703 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:30,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:33,882 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:441920 +03 二月 2026 | 03:45:33,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 03:45:34,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 03:45:34,223 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:45:34,223 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:45:34,223 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:45:34,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:45:34,638 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:45:34,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:45:34,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5353000 +03 二月 2026 | 03:45:34,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:45:34,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:45:34,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:45:35,050 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@281002be +03 二月 2026 | 03:45:35,686 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:45:35,686 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:45:35,686 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:45:35,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:45:35,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:45:35,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:45:36,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:45:37,305 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:45:37,305 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:45:37,306 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:125194 +03 二月 2026 | 03:45:37,648 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:45:39,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:125194 +03 二月 2026 | 03:45:39,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:45:39,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:45:39,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 03:45:39,625 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:45:42,958 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:42,958 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:42,958 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:42,958 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:42,967 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 03:45:43,080 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 03:45:45,703 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:45,917 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.255, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=618411000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 03:45:48,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:51,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:45:55,133 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:441920 +03 二月 2026 | 03:45:55,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 03:45:55,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 03:45:55,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:45:55,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:45:55,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:45:55,774 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:45:55,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:45:55,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:45:55,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5353000 +03 二月 2026 | 03:45:55,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:45:55,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:45:56,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:45:56,284 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@281002be +03 二月 2026 | 03:45:56,926 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:45:56,926 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:45:56,926 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:45:56,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:45:57,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:45:57,148 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:45:57,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:45:58,514 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:45:58,515 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:45:58,515 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:190643 +03 二月 2026 | 03:45:58,836 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:46:00,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:190643 +03 二月 2026 | 03:46:00,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:46:00,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:46:00,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 03:46:00,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:46:04,063 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:04,063 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:04,063 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:04,063 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:04,079 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 03:46:04,188 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 03:46:06,692 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.247, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=618411000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 03:46:06,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:08,610 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 03:46:09,101 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 03:46:09,315 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 03:46:09,398 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@33265a77 +03 二月 2026 | 03:46:09,399 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 201, 101, 109, 207, 106, 206, 205, 104, 109, 206, 208, 103, 102] +03 二月 2026 | 03:46:09,399 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:46:09,399 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 03:46:09,399 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:46:09,399 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 03:46:09,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:11,971 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 101, 109, 207, 106, 206, 205, 104, 109, 206, 208, 103, 102, 202] +03 二月 2026 | 03:46:11,971 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:46:11,971 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 03:46:11,971 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:46:11,971 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 202, 203] +03 二月 2026 | 03:46:12,703 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:14,780 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 101, 109, 207, 106, 206, 205, 104, 109, 206, 208, 103, 102, 104] +03 二月 2026 | 03:46:14,780 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:46:14,780 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 03:46:14,780 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:46:14,780 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203, 202, 202, 203] +03 二月 2026 | 03:46:15,703 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:16,887 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 101, 207, 106, 104, 109, 206, 208, 103, 102, 104] +03 二月 2026 | 03:46:16,887 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:46:16,887 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 03:46:16,887 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:46:16,887 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203, 207, 202, 202, 203, 108, 107] +03 二月 2026 | 03:46:18,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 101, 207, 106, 104, 206, 208, 103, 102, 104, 203] +03 二月 2026 | 03:46:18,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:46:18,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 03:46:18,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:46:18,385 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203, 202, 202, 109, 202, 203, 108, 107, 206, 205] +03 二月 2026 | 03:46:19,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:931043 +03 二月 2026 | 03:46:19,322 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:46:19,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:46:19,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 03:46:19,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:46:20,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:46:21,039 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:46:21,040 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:46:21,040 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:394064 +03 二月 2026 | 03:46:21,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:46:21,836 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 101, 207, 106, 104, 206, 208, 103, 102, 104, 204] +03 二月 2026 | 03:46:21,836 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:46:21,836 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 03:46:21,836 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:46:21,836 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203, 202, 107, 202, 109, 203, 202, 203, 108, 107, 206, 205] +03 二月 2026 | 03:46:23,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:394064 +03 二月 2026 | 03:46:23,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:46:23,111 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 101, 207, 106, 104, 206, 208, 103, 102, 104, 204] +03 二月 2026 | 03:46:23,111 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:46:23,111 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 03:46:23,111 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:46:23,112 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203, 202, 107, 208, 202, 109, 203, 204, 202, 203, 108, 107, 206, 205] +03 二月 2026 | 03:46:23,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:46:23,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 03:46:23,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:46:24,520 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 101, 207, 106, 104, 206, 208, 103, 102, 104, 205] +03 二月 2026 | 03:46:24,520 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:46:24,520 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 03:46:24,520 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:46:24,520 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203, 202, 107, 208, 209, 202, 109, 203, 204, 204, 202, 203, 108, 107, 206, 205] +03 二月 2026 | 03:46:26,767 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 207, 106, 104, 206, 208, 103, 102, 104, 205, 102] +03 二月 2026 | 03:46:26,768 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 03:46:26,768 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 03:46:26,768 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 03:46:26,768 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203, 202, 107, 208, 209, 106, 202, 109, 203, 204, 204, 202, 203, 108, 107, 102, 103, 206, 205] +03 二月 2026 | 03:46:26,787 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:26,787 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:26,787 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:27,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:30,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:33,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:36,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:46:40,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:931043 +03 二月 2026 | 03:46:40,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:46:40,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 03:46:40,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 03:46:40,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 03:46:40,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 03:46:41,031 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 03:46:41,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 03:46:41,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 03:46:41,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 03:46:41,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 03:46:41,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 03:46:41,329 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 03:46:41,543 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@281002be +03 二月 2026 | 03:46:42,184 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 03:46:42,184 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 03:46:42,184 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 03:46:42,221 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 03:46:42,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 03:46:42,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 03:46:43,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 03:46:43,825 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 03:46:43,825 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 03:46:43,825 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:267628 +03 二月 2026 | 03:46:44,183 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 03:46:45,773 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:267628 +03 二月 2026 | 03:49:23,926 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 03:49:23,973 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 03:49:24,288 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 03:49:24,516 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 03:49:28,735 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:87 +03 二月 2026 | 03:49:28,868 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:49:28,879 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:49:33,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:49:36,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:49:39,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:49:42,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:49:45,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:49:48,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:49:51,645 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:49:51,649 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:49:51,653 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:49:51,655 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:49:54,336 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:50:00,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:03,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:06,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:09,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:11,657 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:50:11,660 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:50:15,327 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:50:21,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:24,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:27,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:30,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:31,657 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:50:31,661 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:50:36,327 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:50:42,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:45,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:48,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:51,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:54,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:50:57,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:01,665 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:51:01,668 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:51:03,336 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:51:09,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:12,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:15,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:18,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:21,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:21,674 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:51:21,676 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:51:27,332 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:51:33,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:36,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:39,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:42,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:45,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:48,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:51:51,679 | ERROR | Thread-57 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:51:51,683 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:51:54,335 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:52:00,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:03,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:06,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:09,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:11,686 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:52:11,688 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:52:15,337 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:52:21,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:24,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:27,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:30,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:31,697 | ERROR | Thread-66 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:52:31,698 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:52:36,328 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:52:42,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:45,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:48,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:51,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:54,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:52:57,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:01,700 | ERROR | Thread-71 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:53:01,704 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:53:03,333 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:53:09,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:12,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:15,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:18,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:21,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:21,712 | ERROR | Thread-75 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:53:21,715 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:53:27,339 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:53:33,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:36,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:39,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:42,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:45,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:48,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:53:51,723 | ERROR | Thread-79 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:53:51,726 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:53:54,338 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:54:00,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:03,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:06,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:09,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:11,726 | ERROR | Thread-84 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:54:11,727 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:54:15,334 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:54:21,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:24,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:27,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:30,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:31,727 | ERROR | Thread-88 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:54:31,729 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:54:36,332 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:54:42,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:45,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:48,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:51,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:54,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:54:57,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:01,741 | ERROR | Thread-93 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:55:01,742 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:55:03,328 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:55:09,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:12,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:15,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:18,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:21,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:21,742 | ERROR | Thread-97 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:55:21,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:55:27,337 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:55:33,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:36,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:39,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:42,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:45,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:48,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:55:51,752 | ERROR | Thread-101 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:55:51,755 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:55:54,330 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:56:00,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:03,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:06,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:09,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:11,758 | ERROR | Thread-106 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:56:11,759 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:56:15,334 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:56:21,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:24,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:27,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:30,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:31,761 | ERROR | Thread-110 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:56:31,762 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:56:36,334 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:56:42,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:45,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:48,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:51,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:54,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:56:57,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:01,526 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:57:01,528 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:57:03,333 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:57:09,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:12,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:15,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:18,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:21,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:21,532 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:57:21,535 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:57:27,330 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:57:33,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:36,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:39,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:42,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:45,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:48,287 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:57:51,534 | ERROR | Thread-123 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:57:51,537 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:57:54,329 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:58:00,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:03,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:06,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:09,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:11,541 | ERROR | Thread-128 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:58:11,542 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:58:15,335 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:58:21,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:24,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:27,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:30,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:31,548 | ERROR | Thread-132 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:58:31,551 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:58:36,335 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:58:42,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:45,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:48,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:51,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:54,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:58:57,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:01,555 | ERROR | Thread-137 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:59:01,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:59:03,335 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:59:09,287 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:12,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:15,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:18,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:21,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:21,564 | ERROR | Thread-141 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:59:21,568 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:59:27,330 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 03:59:33,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:36,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:39,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:42,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:45,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:48,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 03:59:51,573 | ERROR | Thread-145 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 03:59:51,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 03:59:54,330 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:00:00,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:03,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:06,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:09,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:11,575 | ERROR | Thread-149 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:00:11,579 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:00:15,331 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:00:21,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:24,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:27,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:30,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:31,584 | ERROR | Thread-154 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:00:31,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:00:36,330 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:00:42,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:45,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:48,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:51,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:54,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:00:57,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:01,593 | ERROR | Thread-158 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:01:01,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:01:03,334 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:01:09,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:12,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:15,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:18,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:21,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:21,596 | ERROR | Thread-162 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:01:21,598 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:01:27,330 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:01:33,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:36,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:39,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:42,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:45,287 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:48,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:01:51,605 | ERROR | Thread-166 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:01:51,606 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:01:54,335 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:02:00,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:03,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:06,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:09,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:11,613 | ERROR | Thread-171 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:02:11,615 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:02:15,340 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:02:21,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:24,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:27,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:30,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:31,617 | ERROR | Thread-176 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:02:31,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:02:36,331 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:02:42,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:45,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:48,287 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:51,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:54,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:02:57,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:01,628 | ERROR | Thread-181 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:03:01,632 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:03:03,333 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:03:09,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:12,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:15,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:18,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:21,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:21,632 | ERROR | Thread-185 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:03:21,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:03:27,338 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:03:33,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:36,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:39,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:42,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:45,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:48,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:03:51,645 | ERROR | Thread-189 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:03:51,648 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:03:54,331 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:04:00,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:03,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:06,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:09,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:11,645 | ERROR | Thread-194 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:04:11,647 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:04:15,329 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:04:21,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:24,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:27,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:30,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:31,652 | ERROR | Thread-198 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:04:31,654 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:04:36,331 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:04:42,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:45,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:48,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:51,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:54,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:04:57,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:05:01,661 | ERROR | Thread-203 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:05:01,663 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:05:03,336 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:05:09,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:05:12,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:05:15,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:05:18,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:05:21,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:05:21,667 | ERROR | Thread-207 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:05:21,670 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:05:27,333 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:05:33,290 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:05:36,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:05:42,467 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:05:42,521 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:05:42,790 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:05:43,028 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:05:47,036 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:88 +03 二月 2026 | 04:05:47,187 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:05:48,790 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:05:51,790 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:07:21,736 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:07:21,787 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:07:22,070 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:07:22,298 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:07:26,842 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:89 +03 二月 2026 | 04:07:26,964 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:07:28,126 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:07:31,070 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:07:34,070 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:07:37,070 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:10,950 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:23:11,000 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:23:11,273 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:23:11,496 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:23:15,995 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:90 +03 二月 2026 | 04:23:16,126 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:23:17,400 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:20,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:23,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:26,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:29,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:32,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:35,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:41,318 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:23:41,725 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:23:41,727 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:23:47,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:50,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:53,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:56,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:23:59,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:01,730 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:24:01,732 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:24:05,314 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:24:11,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:14,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:17,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:20,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:21,740 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:24:21,742 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:24:26,316 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:24:32,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:35,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:38,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:41,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:44,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:47,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:24:53,316 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:24:59,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:02,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:05,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:05,496 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:126) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:25:05,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +03 二月 2026 | 04:25:08,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:11,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:11,755 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:25:11,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:25:17,314 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:25:23,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:26,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:29,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:32,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:35,272 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:38,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:41,759 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:25:41,762 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:25:44,324 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:25:50,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:53,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:56,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:25:59,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:01,769 | ERROR | Thread-56 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:26:01,772 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:26:05,313 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:26:11,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:14,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:17,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:20,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:21,770 | ERROR | Thread-60 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:26:21,773 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:26:26,314 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:26:32,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:35,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:38,272 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:41,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:44,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:47,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:26:51,778 | ERROR | Thread-64 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:26:51,781 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:26:53,317 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:26:59,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:27:02,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:27:05,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:27:08,274 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:27:11,272 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:27:11,534 | ERROR | Thread-69 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:27:11,535 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:28:21,884 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:28:21,937 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:28:22,221 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:28:22,465 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:28:26,492 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:91 +03 二月 2026 | 04:28:26,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:28:28,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:28:31,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:28:34,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:28:37,221 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:28:40,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:28:43,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:28:46,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:28:51,566 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:28:51,570 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:28:52,260 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:28:58,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:01,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:04,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:07,221 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:10,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:11,569 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:29:11,572 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:29:16,267 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:29:22,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:25,221 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:28,221 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:31,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:34,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:37,221 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:41,578 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:29:41,582 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:29:43,265 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:29:49,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:52,221 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:55,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:29:58,221 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:01,221 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:01,582 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:30:01,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:30:07,266 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:30:12,620 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:30:12,679 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:30:12,951 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:30:13,199 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:30:17,600 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:92 +03 二月 2026 | 04:30:17,739 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:30:18,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:21,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:24,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:27,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:30,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:33,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:36,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:41,601 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:30:41,603 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:30:42,997 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:30:48,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:51,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:54,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:30:57,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:00,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:01,602 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:31:01,605 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:31:07,000 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:31:12,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:15,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:18,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:21,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:24,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:27,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:31,615 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:31:31,618 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:31:33,992 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:31:39,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:42,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:45,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:48,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:31:51,613 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:31:51,615 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:31:54,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:32:00,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:03,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:06,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:09,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:11,621 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:32:11,623 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:32:15,996 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:32:21,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:24,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:27,953 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:30,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:33,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:36,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:41,633 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:32:41,636 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:32:42,999 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:32:48,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:51,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:54,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:32:57,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:00,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:01,641 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:33:01,643 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:33:06,998 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:33:12,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:15,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:18,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:21,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:24,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:27,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:31,647 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:33:31,650 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:33:33,990 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:33:39,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:42,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:45,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:48,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:33:51,647 | ERROR | Thread-67 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:33:51,649 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:33:54,989 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:34:00,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:34:03,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:34:06,951 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:34:09,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:34:11,653 | ERROR | Thread-71 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:34:11,655 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:37:29,934 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:37:29,993 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:37:30,238 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:37:30,460 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:37:34,781 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:93 +03 二月 2026 | 04:37:34,915 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:37:36,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:37:39,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:37:42,238 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:37:45,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:37:48,238 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:37:51,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:37:51,715 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:37:51,720 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:37:57,287 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:38:03,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:06,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:09,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:12,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:15,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:18,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:21,725 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:38:21,727 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:38:24,293 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:38:30,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:33,238 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:36,238 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:39,238 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:41,736 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:38:41,740 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:38:45,287 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:38:51,238 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:54,238 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:38:57,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:00,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:01,738 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:39:01,740 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:39:06,275 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:39:12,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:15,237 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:21,435 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:39:21,489 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:39:21,740 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:39:21,981 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:39:26,414 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:94 +03 二月 2026 | 04:39:26,545 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:39:27,741 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:30,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:33,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:36,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:39,741 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:42,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:45,741 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:39:51,750 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:39:51,753 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:39:51,783 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:39:57,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:00,739 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:03,740 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:08,215 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:40:08,264 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:40:08,528 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:40:08,762 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:40:13,013 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:95 +03 二月 2026 | 04:40:13,147 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:40:14,528 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:17,528 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:20,528 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:23,528 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:26,529 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:29,529 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:31,762 | ERROR | Thread-30 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:40:31,764 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:40:35,574 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:40:43,273 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:40:43,324 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:40:43,619 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:40:43,868 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:40:48,011 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:96 +03 二月 2026 | 04:40:48,146 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:40:49,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:52,620 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:55,618 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:40:58,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:01,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:04,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:07,618 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:11,776 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:41:11,781 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:41:13,668 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:41:19,618 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:22,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:25,618 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:28,618 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:31,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:31,782 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:41:31,784 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:41:37,714 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:41:43,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:46,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:49,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:52,619 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:41:55,620 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:00,799 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:42:00,848 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:42:01,110 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:42:01,344 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:42:05,832 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:97 +03 二月 2026 | 04:42:05,958 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:42:07,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:10,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:13,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:16,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:19,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:22,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:25,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:31,153 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:42:31,796 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:42:31,799 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:42:37,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:40,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:43,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:46,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:49,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:42:51,551 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:42:51,553 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:42:55,160 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:43:01,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:04,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:07,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:10,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:11,563 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:43:11,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:43:16,155 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:43:22,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:25,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:28,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:31,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:34,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:37,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:41,562 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:43:41,564 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:43:43,154 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:43:49,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:52,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:55,110 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:43:58,111 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:03,251 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:44:03,306 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:44:03,582 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:44:03,829 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:44:08,329 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:98 +03 二月 2026 | 04:44:08,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:44:09,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:12,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:15,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:18,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:21,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:24,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:27,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:31,582 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:44:31,586 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:44:33,636 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:44:39,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:42,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:45,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:48,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:51,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:44:51,590 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:44:51,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:44:57,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:45:03,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:06,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:09,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:12,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:15,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:18,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:21,593 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:45:21,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:45:26,596 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:45:26,647 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:45:26,999 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:45:27,245 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:45:31,741 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:99 +03 二月 2026 | 04:45:31,887 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:45:33,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:35,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:39,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:42,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:44,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:48,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:51,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:45:51,602 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:45:51,606 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:45:57,044 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:46:03,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:05,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:08,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:12,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:15,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:17,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:21,609 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:46:21,612 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:46:24,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:46:30,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:32,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:36,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:39,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:41,618 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:46:41,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:46:45,046 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:46:51,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:54,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:46:57,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:00,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:01,627 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:47:01,629 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:47:06,043 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:47:12,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:15,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:18,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:21,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:24,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:26,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:31,631 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:47:31,633 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:47:33,044 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:47:38,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:42,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:45,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:48,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:50,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:47:51,638 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:47:51,640 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:47:57,045 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:48:03,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:06,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:09,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:12,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:14,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:17,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:21,644 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:48:21,646 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:48:24,047 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:48:30,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:32,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:36,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:39,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:41,650 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:48:41,652 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:48:45,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:48:50,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:54,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:48:57,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:49:00,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:49:01,655 | ERROR | Thread-67 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:49:01,656 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:49:06,047 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:49:11,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:49:14,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:49:18,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:49:21,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:49:23,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:49:26,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:49:31,661 | ERROR | Thread-71 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:49:31,664 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:54:34,318 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:54:34,367 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:54:34,644 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:54:34,868 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:54:38,952 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:100 +03 二月 2026 | 04:54:39,091 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:54:39,450 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:54:39,450 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:54:39,450 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:54:39,912 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:54:41,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:54:42,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:54:42,219 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:54:42,335 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:54:42,335 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:54:42,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:54:42,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:54:42,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:54:42,956 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:54:42,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:54:42,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:54:42,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:54:43,105 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:54:43,345 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:54:44,070 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:54:44,070 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:54:44,070 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:54:44,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:54:44,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:54:44,307 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:54:44,619 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:54:44,964 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:54:44,965 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:54:44,965 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:54:45,488 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:54:47,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:54:47,273 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:54:47,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:54:47,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:54:47,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:54:47,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:54:48,009 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:54:48,152 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:54:48,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:54:48,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:54:48,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:54:48,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:54:48,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:54:48,608 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:54:49,412 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:54:49,412 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:54:49,413 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:54:49,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:54:49,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:54:49,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:54:49,982 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:54:50,336 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:54:50,336 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:54:50,336 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:54:50,791 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:54:52,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:54:52,491 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:54:52,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:54:52,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:54:52,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:54:52,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:54:53,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:54:53,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:54:53,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:54:53,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:54:53,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:54:53,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:54:53,439 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:54:53,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:54:54,406 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:54:54,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:54:54,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:54:54,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:54:54,487 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:54:54,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:54:55,162 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:54:55,595 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:54:55,595 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:54:55,595 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:54:56,066 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:54:57,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:54:57,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:54:57,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:54:58,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:54:58,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:54:58,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:54:58,467 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:54:58,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:54:58,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:54:58,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:54:58,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:54:58,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:54:58,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:54:59,033 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:54:59,787 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:54:59,787 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:54:59,787 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:54:59,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:54:59,867 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:00,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:00,334 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:00,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:00,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:00,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:01,153 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:02,863 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:02,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:03,090 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:03,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:03,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:03,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:03,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:03,679 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:03,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:03,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:03,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:03,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:03,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:04,116 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:04,850 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:04,850 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:04,850 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:04,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:04,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:05,085 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:05,396 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:05,795 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:05,795 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:05,795 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:06,290 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:08,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:08,062 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 04:55:08,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 04:55:08,258 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:126) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:55:08,262 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : ExceptionOnReceive +03 二月 2026 | 04:55:08,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:08,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:08,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:08,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:08,864 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:08,904 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:08,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:08,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:08,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:09,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:09,304 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:10,045 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:10,045 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:10,045 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:10,085 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:10,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:10,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:10,609 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:10,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:10,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:10,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:11,417 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:13,137 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:13,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 04:55:13,362 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 04:55:13,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:13,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:13,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:13,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:13,929 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:13,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:13,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:13,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:13,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:14,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:14,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:15,082 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:15,082 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:15,082 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:15,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:15,162 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:15,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:15,622 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:15,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:15,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:15,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:16,503 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:18,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:18,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:18,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:18,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:18,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:18,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:19,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:19,242 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:19,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:19,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:19,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:19,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:19,444 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:19,694 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:20,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:20,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:20,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:20,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:20,529 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:20,708 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:21,052 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:21,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:21,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:21,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:21,962 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:23,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:23,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:23,986 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:24,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:24,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:24,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:24,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:24,569 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:24,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:24,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:24,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:24,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:24,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:25,005 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:25,728 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:25,728 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:25,728 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:25,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:25,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:25,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:26,302 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:26,691 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:26,692 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:26,692 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:27,212 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:28,999 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:29,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:29,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:29,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:29,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:29,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:29,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:29,895 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:29,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:30,088 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:30,349 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:31,135 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:31,135 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:31,135 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:31,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:31,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:31,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:31,711 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:32,063 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:32,063 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:32,063 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:32,549 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:34,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:34,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:34,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:34,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:34,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:34,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:34,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:35,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:35,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:35,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:35,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:35,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:35,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:35,539 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:36,263 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:36,263 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:36,263 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:36,302 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:36,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:36,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:36,815 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:37,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:37,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:37,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:37,712 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:39,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:39,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:39,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:39,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:39,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:39,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:40,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:40,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:40,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:40,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:40,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:40,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:40,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:40,789 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:41,551 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:41,551 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:41,551 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:41,592 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:41,632 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:41,796 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:42,126 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:42,475 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:42,475 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:42,475 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:42,985 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:44,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:44,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:44,928 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:45,071 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:45,071 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:45,071 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:45,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:45,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:45,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:45,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:45,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:45,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:45,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:46,068 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:46,869 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:46,869 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:46,869 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:46,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:46,949 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:47,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:47,437 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:47,808 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:47,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:47,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:48,238 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:49,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:49,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:50,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:50,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:50,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:50,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:50,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:50,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:50,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:50,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:50,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:50,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:50,838 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:51,073 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:51,788 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:51,788 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:51,788 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:51,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:51,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:52,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:52,312 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:52,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:52,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:52,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:53,146 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:55:54,908 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:55:54,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:55,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:55:55,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:55:55,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:55:55,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:55:55,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:55:55,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:55:55,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:55:55,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:55:55,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:55:55,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:55:55,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:55:56,230 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:55:56,983 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:55:56,983 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:55:56,983 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:55:57,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:55:57,062 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:55:57,228 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:55:57,559 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:55:58,020 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:55:58,020 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:55:58,020 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:55:58,439 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:00,048 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:00,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:00,263 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:00,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:00,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:00,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:00,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:00,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:00,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:00,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:00,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:00,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:00,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:01,205 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:56:01,879 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:01,879 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:01,879 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:01,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:01,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:02,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:56:02,395 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:56:02,735 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:02,735 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:02,735 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:03,200 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:04,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:04,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:05,105 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:05,221 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:05,221 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:05,221 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:05,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:05,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:05,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:05,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:05,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:05,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:05,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:06,111 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:56:06,833 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:06,833 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:06,833 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:06,874 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:06,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:07,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:56:07,373 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:56:07,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:07,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:07,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:08,266 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:09,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:10,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:10,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:10,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:10,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:10,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:10,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:10,806 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:10,845 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:10,845 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:10,845 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:10,845 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:10,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:11,244 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:56:11,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:11,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:11,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:12,035 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:12,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:12,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:56:12,543 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:56:12,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:12,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:12,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:13,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:15,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:15,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:15,312 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:15,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:15,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:15,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:15,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:15,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:15,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:15,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:15,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:15,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:16,065 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:16,300 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@205a24ef +03 二月 2026 | 04:56:17,013 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:17,013 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:17,013 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:17,052 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:17,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:17,250 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:56:17,558 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:56:17,915 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:17,915 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:17,915 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:18,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:23,542 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:56:23,601 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:56:23,826 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:56:24,056 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:56:28,544 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:101 +03 二月 2026 | 04:56:28,678 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:56:28,963 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:28,964 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:28,964 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:29,488 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:31,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:31,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:32,025 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:32,149 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:32,149 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:32,149 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:32,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:32,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:32,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:32,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:32,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:32,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:32,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:33,237 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67d8f47 +03 二月 2026 | 04:56:33,992 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:33,993 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:33,994 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:34,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:34,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:34,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:56:34,565 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:56:34,924 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:34,924 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:34,924 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:35,441 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:37,228 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:37,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:37,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:37,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:37,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:37,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:37,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:38,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:38,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:38,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:38,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:38,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:38,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:38,571 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67d8f47 +03 二月 2026 | 04:56:39,342 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:39,342 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:39,342 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:39,380 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:39,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:39,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:56:39,910 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:56:40,268 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:40,268 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:40,268 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:40,742 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:42,436 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:42,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:42,675 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:42,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:42,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:42,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:43,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:43,259 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:43,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:43,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:43,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:43,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:43,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:43,711 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67d8f47 +03 二月 2026 | 04:56:44,448 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:44,450 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:44,450 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:44,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:44,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:44,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:56:44,987 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:56:45,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:45,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:45,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:45,802 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:47,461 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:47,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:47,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:47,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:47,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:47,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:48,133 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:48,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:48,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:48,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:48,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:48,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:48,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:48,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67d8f47 +03 二月 2026 | 04:56:49,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:49,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:49,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:49,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:49,454 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:49,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:56:49,896 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:56:50,217 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:50,218 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:50,218 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:50,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:51,788 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 04:56:51,791 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 04:56:52,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:52,442 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:52,649 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:52,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:52,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:52,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:53,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:53,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:53,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:53,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:53,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:53,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:53,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:53,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67d8f47 +03 二月 2026 | 04:56:54,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:54,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:54,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:54,362 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:54,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:54,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:56:54,900 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:56:55,289 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:56:55,289 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:56:55,289 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:56:55,798 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:56:57,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:56:57,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:57,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:56:57,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:56:57,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:56:57,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:56:58,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:56:58,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:56:58,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:56:58,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:56:58,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:56:58,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:56:58,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:56:58,815 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67d8f47 +03 二月 2026 | 04:56:59,529 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:56:59,529 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:56:59,529 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:56:59,567 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:56:59,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:56:59,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:57:00,079 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:57:00,426 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:57:00,426 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:57:00,426 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:57:00,883 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:57:02,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:57:02,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:57:02,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:57:02,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:57:02,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:57:02,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:57:03,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:57:03,362 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:57:03,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:57:03,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:57:03,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:57:03,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:57:03,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:57:03,797 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67d8f47 +03 二月 2026 | 04:57:04,494 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:57:04,494 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:57:04,494 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:57:04,532 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:57:04,569 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:57:04,724 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:57:05,029 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:57:05,366 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:57:05,366 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:57:05,366 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:57:05,823 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:57:07,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:57:07,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:57:07,762 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:57:07,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:57:07,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:57:07,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:57:08,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:57:08,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:57:08,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:57:08,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:57:08,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:57:08,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:57:08,489 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:57:08,717 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67d8f47 +03 二月 2026 | 04:57:09,408 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:57:09,408 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:57:09,408 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:57:09,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:57:09,485 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:57:09,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:57:09,938 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:57:10,327 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:57:10,327 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:57:10,327 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:57:10,819 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:57:12,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:57:12,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:57:12,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:57:12,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:57:12,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:57:12,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:57:13,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:57:13,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:57:13,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:57:13,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:57:13,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:57:13,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:57:13,573 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:57:13,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67d8f47 +03 二月 2026 | 04:57:14,531 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:57:14,540 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:57:14,540 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:57:14,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:57:14,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:57:14,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:57:15,090 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:57:15,467 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:57:15,467 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:57:15,467 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:57:15,958 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:57:47,722 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:57:47,778 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:57:48,032 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:57:48,252 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:57:52,600 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:102 +03 二月 2026 | 04:57:52,737 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:57:53,061 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:57:53,061 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:57:53,061 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:57:53,485 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:57:55,549 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:57:55,586 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:57:55,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 04:57:55,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 04:57:55,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 04:57:55,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 04:57:56,335 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 04:57:56,436 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 04:57:56,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 04:57:56,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 04:57:56,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 04:57:56,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 04:57:56,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 04:57:56,864 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4668d32f +03 二月 2026 | 04:57:57,546 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 04:57:57,547 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 04:57:57,547 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 04:57:57,588 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 04:57:57,632 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 04:57:57,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:57:58,237 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:58:01,297 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 04:58:01,354 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:01,354 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:01,354 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:01,535 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 04:58:03,033 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:06,033 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:09,034 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:12,032 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:15,035 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:18,032 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:21,033 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:24,033 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:27,033 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:30,032 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:33,034 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:36,034 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:58:41,161 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:58:41,217 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:58:41,466 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:58:41,696 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:58:49,262 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 04:58:49,313 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 04:58:49,584 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 04:58:49,848 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 04:58:54,014 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:103 +03 二月 2026 | 04:58:54,148 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 04:58:54,446 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 04:58:54,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 04:58:54,447 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686323 +03 二月 2026 | 04:58:54,977 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 04:58:57,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686323 +03 二月 2026 | 04:58:57,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 04:58:57,329 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 04:58:57,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 04:58:57,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 04:58:57,801 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=686323, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 04:59:00,839 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:00,839 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:01,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:04,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:07,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:10,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:13,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:16,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:19,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:22,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:25,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:28,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:31,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:34,589 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:37,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:40,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:43,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:46,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:49,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:52,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:55,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 04:59:58,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:01,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:04,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:07,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:10,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:13,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:16,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:19,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:22,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:25,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:28,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:31,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:34,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:37,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:40,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:43,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:46,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:49,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:52,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:55,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:00:58,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:01,587 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:04,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:07,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:10,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:13,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:16,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:19,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:22,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:25,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:28,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:31,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:34,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:37,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:40,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:43,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:46,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:49,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:52,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:55,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:01:58,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:01,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:04,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:07,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:10,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:13,586 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:16,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:19,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:22,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:25,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:28,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:31,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:34,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:37,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:40,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:43,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:46,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:49,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:52,583 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:55,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:02:58,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:01,584 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:07,115 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:03:07,165 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:03:07,435 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:03:07,673 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:03:12,024 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:104 +03 二月 2026 | 05:03:12,165 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:03:13,435 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:16,436 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:19,436 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:22,435 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:25,435 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:28,436 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:31,436 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:31,645 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:03:31,651 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:03:31,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:03:31,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:03:31,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:203182 +03 二月 2026 | 05:03:32,564 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:03:34,665 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:203182 +03 二月 2026 | 05:03:34,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:03:34,896 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:03:35,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:03:35,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:03:35,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:03:35,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:03:35,592 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:03:35,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:03:35,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 05:03:35,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:03:35,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:03:35,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:03:36,021 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@9d65168 +03 二月 2026 | 05:03:36,790 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:03:36,790 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:03:36,790 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:03:36,853 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:03:36,895 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:03:37,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:03:37,384 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=203182, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:03:40,471 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:03:40,481 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:03:43,552 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:03:43,608 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:03:43,855 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:03:44,087 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:03:48,742 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:105 +03 二月 2026 | 05:03:48,862 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:03:49,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:03:49,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:03:49,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:203182 +03 二月 2026 | 05:03:49,709 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:03:51,928 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:203182 +03 二月 2026 | 05:03:51,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:03:52,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:03:52,302 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:03:52,302 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:03:52,302 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:03:52,796 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:03:52,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:03:52,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:03:52,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5017000 +03 二月 2026 | 05:03:52,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:03:52,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:03:53,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:03:53,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@731bff56 +03 二月 2026 | 05:03:54,075 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:03:54,076 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:03:54,076 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:03:54,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:03:54,162 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:03:54,333 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:03:54,667 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=203182, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:03:57,710 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:57,710 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:57,710 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:03:57,735 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:03:57,991 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:03:58,219 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:03:58,313 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@40ce9348 +03 二月 2026 | 05:03:58,313 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 206, 204, 208, 107, 207, 209, 208, 109, 106, 105, 209, 108, 203] +03 二月 2026 | 05:03:58,313 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:03:58,313 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:03:58,313 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:03:58,313 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 05:03:58,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:01,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:02,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 206, 204, 208, 107, 207, 208, 109, 106, 105, 209, 108, 203, 207] +03 二月 2026 | 05:04:02,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:04:02,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:04:02,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:04:02,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[108, 209] +03 二月 2026 | 05:04:04,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:07,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:10,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:12,640 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 206, 204, 208, 107, 207, 208, 109, 106, 105, 108, 203, 207, 202] +03 二月 2026 | 05:04:12,640 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:04:12,640 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:04:12,640 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:04:12,640 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[108, 209, 209, 209] +03 二月 2026 | 05:04:13,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:16,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:19,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:22,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:25,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:28,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:29,283 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 206, 204, 208, 107, 208, 109, 106, 105, 108, 203, 207, 202, 205] +03 二月 2026 | 05:04:29,283 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:04:29,283 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:04:29,283 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:04:29,283 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[108, 209, 207, 209, 209, 207] +03 二月 2026 | 05:04:30,631 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 204, 208, 107, 208, 109, 106, 105, 108, 203, 207, 202, 205, 204] +03 二月 2026 | 05:04:30,632 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:04:30,632 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:04:30,632 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:04:30,632 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[108, 209, 207, 205, 209, 209, 207, 208] +03 二月 2026 | 05:04:31,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:34,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:37,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:40,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:43,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:46,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:49,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:04:51,669 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:04:51,672 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:04:55,894 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:05:01,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:04,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:07,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:10,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:13,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:16,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:21,675 | ERROR | Thread-37 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:05:21,677 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:05:22,901 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:05:28,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:31,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:34,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:37,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:40,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:41,684 | ERROR | Thread-41 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:05:41,688 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:05:46,894 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:05:52,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:55,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:05:58,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:01,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:04,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:07,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:11,690 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:06:11,692 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:06:13,895 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:06:19,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:22,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:25,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:28,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:31,697 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:06:31,698 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:06:34,902 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:06:40,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:43,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:46,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:49,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:06:51,702 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:06:51,705 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:06:55,906 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:07:01,019 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:07:01,066 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:07:01,347 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:07:01,573 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:07:05,755 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:106 +03 二月 2026 | 05:07:05,884 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:07:07,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:10,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:13,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:13,839 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:07:13,839 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:07:13,839 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:404737 +03 二月 2026 | 05:07:14,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:07:16,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:404737 +03 二月 2026 | 05:07:16,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:07:16,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:07:16,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:07:16,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:07:16,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:07:17,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:07:17,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:07:17,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:07:17,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5551000 +03 二月 2026 | 05:07:17,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:07:17,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:07:17,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:07:17,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e6e1e61 +03 二月 2026 | 05:07:18,465 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:07:18,465 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:07:18,465 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:07:18,506 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:07:18,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:07:18,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:07:19,008 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=404737, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:07:22,058 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:22,059 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:22,081 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:07:22,311 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:07:22,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:22,490 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:07:22,561 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@a6d79de +03 二月 2026 | 05:07:25,226 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 102, 108, 206, 104, 203, 207, 201, 201, 209, 107, 106, 104, 104] +03 二月 2026 | 05:07:25,226 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:07:25,226 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:07:25,226 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:07:25,226 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209] +03 二月 2026 | 05:07:25,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:28,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:28,802 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 102, 108, 206, 104, 207, 209, 107, 106, 104, 104] +03 二月 2026 | 05:07:28,802 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[201, 201, 201] +03 二月 2026 | 05:07:28,802 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:07:28,802 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:07:28,802 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 201, 202, 201] +03 二月 2026 | 05:07:30,898 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 102, 108, 206, 104, 207, 107, 106, 104, 104, 105] +03 二月 2026 | 05:07:30,899 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[201, 201, 201] +03 二月 2026 | 05:07:30,899 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:07:30,899 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:07:30,899 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 202, 209, 202, 201, 201, 201] +03 二月 2026 | 05:07:31,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:34,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:37,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:40,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:43,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:46,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:49,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:07:51,725 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:07:51,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:07:55,393 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:08:01,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:04,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:07,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:10,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:11,728 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:08:11,730 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:08:16,397 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:08:22,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:25,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:28,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:31,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:34,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:37,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:41,740 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:08:41,744 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:08:43,387 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:08:49,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:52,348 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:55,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:08:58,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:01,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:01,740 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:09:01,741 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:09:07,389 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:09:13,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:16,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:19,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:22,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:25,347 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:28,346 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:31,751 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:09:31,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:09:34,391 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:09:43,614 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:09:43,661 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:09:43,923 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:09:44,139 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:09:48,383 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:107 +03 二月 2026 | 05:09:48,498 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:09:48,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:09:48,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:09:48,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:286359 +03 二月 2026 | 05:09:49,322 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:09:51,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:286359 +03 二月 2026 | 05:09:51,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:09:51,658 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:09:51,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:09:51,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:09:51,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:09:52,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:09:52,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:09:52,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:09:52,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5875000 +03 二月 2026 | 05:09:52,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:09:52,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:09:52,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:09:52,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@292b3b03 +03 二月 2026 | 05:09:53,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:09:53,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:09:53,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:09:53,481 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:09:53,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:09:53,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:09:53,984 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=286359, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:09:57,026 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:57,027 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:57,027 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:57,045 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:09:57,289 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:09:57,484 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:09:57,559 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@a6d79de +03 二月 2026 | 05:09:58,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:09:59,410 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 208, 205, 109, 109, 102, 203, 201, 205, 101, 108, 102, 204, 106] +03 二月 2026 | 05:09:59,410 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:09:59,410 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:09:59,410 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:09:59,410 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201] +03 二月 2026 | 05:10:01,036 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 208, 205, 109, 109, 102, 203, 201, 205, 108, 102, 204, 106, 202] +03 二月 2026 | 05:10:01,037 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:01,037 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:10:01,037 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:01,037 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 209, 101] +03 二月 2026 | 05:10:01,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:03,827 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 208, 205, 109, 109, 102, 203, 201, 205, 108, 102, 204, 202, 105] +03 二月 2026 | 05:10:03,827 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:03,827 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:10:03,827 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:03,827 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 209, 101, 101, 106] +03 二月 2026 | 05:10:04,922 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:07,153 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 208, 205, 109, 109, 102, 203, 201, 205, 108, 102, 204, 202, 106] +03 二月 2026 | 05:10:07,153 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:07,154 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:10:07,154 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:07,154 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 209, 101, 102, 101, 106, 105, 105] +03 二月 2026 | 05:10:07,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:10,802 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 208, 205, 109, 109, 102, 203, 201, 205, 108, 102, 204, 202, 109] +03 二月 2026 | 05:10:10,802 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:10,803 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:10:10,803 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:10,803 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 209, 101, 102, 106, 101, 106, 106, 105, 105] +03 二月 2026 | 05:10:10,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:13,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:16,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:17,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 208, 109, 109, 102, 203, 205, 108, 102, 204, 109] +03 二月 2026 | 05:10:17,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:17,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[203, 202, 201] +03 二月 2026 | 05:10:17,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:17,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 209, 101, 102, 106, 203, 101, 106, 106, 206, 207, 105, 105] +03 二月 2026 | 05:10:19,583 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 208, 109, 109, 102, 203, 205, 102, 204, 109, 107] +03 二月 2026 | 05:10:19,583 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:19,583 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[203, 202, 201] +03 二月 2026 | 05:10:19,583 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:19,583 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 209, 101, 102, 106, 203, 101, 106, 106, 206, 207, 202, 201, 105, 105, 108, 108] +03 二月 2026 | 05:10:19,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:22,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:25,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:28,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:29,403 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:10:29,403 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:10:29,403 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:593422 +03 二月 2026 | 05:10:29,831 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:10:31,474 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:593422 +03 二月 2026 | 05:10:31,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:10:31,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:10:31,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:10:31,817 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:10:31,817 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:10:32,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:10:32,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:10:32,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:10:32,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6229000 +03 二月 2026 | 05:10:32,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:10:32,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:10:32,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:10:32,663 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@292b3b03 +03 二月 2026 | 05:10:33,357 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:10:33,357 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:10:33,357 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:10:33,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:10:33,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:10:33,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:10:33,882 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=593422, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:10:36,921 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:36,921 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:36,941 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:10:37,194 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:10:37,392 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:10:37,469 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@a6d79de +03 二月 2026 | 05:10:37,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:38,852 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[201, 204, 107, 107, 201, 207, 105, 109, 203, 202, 206] +03 二月 2026 | 05:10:38,852 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:38,852 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103] +03 二月 2026 | 05:10:38,852 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:38,852 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101] +03 二月 2026 | 05:10:40,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:43,473 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[201, 204, 107, 201, 207, 105, 109, 203, 202, 206, 209] +03 二月 2026 | 05:10:43,473 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:43,473 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103] +03 二月 2026 | 05:10:43,473 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:43,473 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 108, 106, 102, 103] +03 二月 2026 | 05:10:43,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:46,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 107, 201, 207, 105, 109, 203, 202, 206, 209, 103] +03 二月 2026 | 05:10:46,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:46,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103] +03 二月 2026 | 05:10:46,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:46,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 203, 108, 106, 202, 203, 102, 103] +03 二月 2026 | 05:10:46,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:48,134 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 107, 201, 207, 105, 109, 203, 202, 206, 103, 207] +03 二月 2026 | 05:10:48,134 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:48,134 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103] +03 二月 2026 | 05:10:48,134 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:48,134 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 203, 204, 209, 108, 106, 202, 203, 102, 103] +03 二月 2026 | 05:10:49,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:50,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 107, 201, 105, 109, 203, 202, 206, 103, 207, 108] +03 二月 2026 | 05:10:50,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:50,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103] +03 二月 2026 | 05:10:50,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:50,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 203, 204, 202, 209, 207, 108, 106, 202, 203, 102, 103] +03 二月 2026 | 05:10:51,388 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 201, 105, 109, 203, 202, 206, 103, 207, 108, 106] +03 二月 2026 | 05:10:51,388 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:10:51,388 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[101, 102, 103] +03 二月 2026 | 05:10:51,388 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:10:51,389 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 203, 204, 202, 108, 209, 207, 204, 108, 106, 202, 203, 102, 103] +03 二月 2026 | 05:10:52,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:55,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:10:58,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:01,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:02,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:11:02,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:11:02,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:792457 +03 二月 2026 | 05:11:02,814 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:11:04,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:792457 +03 二月 2026 | 05:11:04,494 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:11:04,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:11:04,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:11:04,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:11:04,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:11:05,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:11:05,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:11:05,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:11:05,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5833000 +03 二月 2026 | 05:11:05,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:11:05,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:11:05,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:11:05,648 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@292b3b03 +03 二月 2026 | 05:11:06,343 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:11:06,343 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:11:06,343 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:11:06,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:11:06,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:11:06,569 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:11:06,859 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=792457, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:11:09,942 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:11:11,776 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:11:11,780 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:11:13,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:16,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:19,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:22,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:25,924 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:28,923 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:31,782 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:11:31,784 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:11:34,971 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:11:42,383 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:11:42,436 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:11:42,662 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:11:42,888 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:11:47,640 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:108 +03 二月 2026 | 05:11:47,758 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:11:48,105 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:11:48,105 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:11:48,105 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:792457 +03 二月 2026 | 05:11:48,570 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:11:50,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:792457 +03 二月 2026 | 05:11:50,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:11:50,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:11:50,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:11:50,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:11:50,932 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:11:51,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:11:51,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:11:51,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:11:51,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:5833000 +03 二月 2026 | 05:11:51,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:11:51,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:11:51,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:11:51,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7ed13e4c +03 二月 2026 | 05:11:52,643 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:11:52,643 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:11:52,643 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:11:52,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:11:52,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:11:52,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:11:53,179 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=792457, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:11:56,226 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:56,227 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:56,227 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:56,239 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:11:56,480 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:11:56,674 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:11:56,749 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@45f69803 +03 二月 2026 | 05:11:56,749 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 109, 207, 204, 104, 101, 201, 107, 207, 107, 204, 104, 108, 108] +03 二月 2026 | 05:11:56,749 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:11:56,749 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:11:56,749 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:11:56,749 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 05:11:57,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:11:58,161 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 109, 207, 204, 104, 201, 107, 207, 107, 204, 104, 108, 108, 205] +03 二月 2026 | 05:11:58,162 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:11:58,162 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:11:58,162 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:11:58,162 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101] +03 二月 2026 | 05:11:59,195 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 207, 204, 104, 201, 107, 207, 107, 204, 104, 108, 108, 205, 103] +03 二月 2026 | 05:11:59,195 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:11:59,195 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:11:59,195 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:11:59,195 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 109] +03 二月 2026 | 05:11:59,831 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 207, 204, 104, 107, 207, 107, 204, 104, 108, 108, 205, 103, 106] +03 二月 2026 | 05:11:59,831 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:11:59,832 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:11:59,832 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:11:59,832 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 101, 109, 201] +03 二月 2026 | 05:12:00,569 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 207, 204, 104, 107, 207, 107, 204, 104, 108, 108, 205, 106, 205] +03 二月 2026 | 05:12:00,569 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:12:00,569 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:12:00,569 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:12:00,569 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 106, 101, 109, 201, 103] +03 二月 2026 | 05:12:00,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:03,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:05,210 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 204, 104, 107, 207, 107, 204, 104, 108, 108, 205, 106, 205, 202] +03 二月 2026 | 05:12:05,211 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:12:05,211 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:12:05,211 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:12:05,211 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 106, 103, 101, 109, 201, 103, 208, 209] +03 二月 2026 | 05:12:06,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 204, 104, 107, 207, 107, 204, 104, 108, 108, 205, 205, 202, 103] +03 二月 2026 | 05:12:06,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:12:06,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:12:06,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:12:06,639 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 106, 103, 106, 101, 109, 201, 103, 106, 208, 209] +03 二月 2026 | 05:12:06,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:07,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 204, 104, 107, 207, 107, 204, 104, 108, 108, 205, 205, 202, 201] +03 二月 2026 | 05:12:07,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:12:07,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:12:07,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:12:07,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 106, 103, 106, 108, 101, 109, 201, 103, 106, 103, 208, 209] +03 二月 2026 | 05:12:09,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:10,176 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 204, 104, 107, 207, 107, 204, 104, 108, 108, 205, 205, 202, 105] +03 二月 2026 | 05:12:10,176 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:12:10,176 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:12:10,176 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:12:10,176 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 106, 103, 106, 108, 103, 101, 109, 201, 103, 106, 103, 208, 209, 202, 203] +03 二月 2026 | 05:12:11,738 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 204, 104, 107, 207, 107, 204, 104, 108, 108, 205, 205, 105, 209] +03 二月 2026 | 05:12:11,738 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:12:11,738 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:12:11,738 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:12:11,738 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 106, 103, 106, 108, 103, 108, 101, 109, 201, 103, 106, 103, 202, 208, 209, 202, 203] +03 二月 2026 | 05:12:12,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:14,428 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 204, 104, 107, 207, 107, 204, 104, 108, 108, 205, 205, 105, 202] +03 二月 2026 | 05:12:14,428 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:12:14,428 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:12:14,429 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:12:14,429 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 106, 103, 106, 108, 103, 108, 201, 101, 109, 201, 103, 106, 103, 202, 208, 209, 202, 203, 208, 207] +03 二月 2026 | 05:12:15,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:15,909 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 204, 104, 107, 207, 107, 204, 104, 108, 108, 205, 205, 105, 208] +03 二月 2026 | 05:12:15,909 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:12:15,909 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:12:15,909 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:12:15,910 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101, 106, 103, 106, 108, 103, 108, 201, 209, 101, 109, 201, 103, 106, 103, 202, 202, 208, 209, 202, 203, 208, 207] +03 二月 2026 | 05:12:18,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:21,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:24,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:27,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:30,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:33,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:36,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:41,801 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:12:41,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:12:42,705 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:12:46,174 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:12:46,174 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:12:46,174 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:538126 +03 二月 2026 | 05:12:46,628 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:12:48,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:538126 +03 二月 2026 | 05:12:48,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:12:48,492 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:12:48,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:12:48,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:12:48,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:12:48,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:12:49,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:12:49,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:12:49,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6547000 +03 二月 2026 | 05:12:49,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:12:49,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:12:49,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:12:49,519 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7ed13e4c +03 二月 2026 | 05:12:50,192 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:12:50,192 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:12:50,192 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:12:50,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:12:50,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:12:50,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:12:50,742 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=538126, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:12:53,781 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:53,782 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:53,798 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:12:54,085 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:12:54,288 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:12:54,363 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@5a28a171 +03 二月 2026 | 05:12:54,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:57,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:12:59,563 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 109, 101, 103, 103, 205, 103, 107, 203, 206, 205, 201, 102, 101] +03 二月 2026 | 05:12:59,564 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:12:59,564 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:12:59,564 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:12:59,564 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109] +03 二月 2026 | 05:13:00,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:02,769 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 109, 101, 103, 103, 205, 103, 107, 203, 205, 201, 102, 101, 101] +03 二月 2026 | 05:13:02,769 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:13:02,769 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:13:02,769 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:13:02,769 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 209, 207, 208] +03 二月 2026 | 05:13:03,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:06,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:06,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 109, 101, 103, 103, 205, 103, 107, 203, 205, 102, 101, 101, 108] +03 二月 2026 | 05:13:06,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:13:06,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:13:06,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:13:06,709 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 209, 204, 207, 208, 202, 203] +03 二月 2026 | 05:13:07,619 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 109, 101, 103, 103, 205, 103, 107, 205, 102, 101, 101, 108, 201] +03 二月 2026 | 05:13:07,619 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:13:07,619 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:13:07,620 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:13:07,620 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 209, 204, 205, 203, 207, 208, 202, 203] +03 二月 2026 | 05:13:09,264 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 109, 101, 205, 103, 107, 205, 102, 101, 101, 108] +03 二月 2026 | 05:13:09,264 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[103, 103, 103] +03 二月 2026 | 05:13:09,264 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:13:09,264 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:13:09,264 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 209, 204, 205, 103, 203, 201, 207, 208, 202, 203] +03 二月 2026 | 05:13:09,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:10,391 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 109, 101, 107, 205, 101, 101, 108] +03 二月 2026 | 05:13:10,392 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[103, 103, 103] +03 二月 2026 | 05:13:10,392 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[104, 103, 102] +03 二月 2026 | 05:13:10,392 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:13:10,392 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 209, 204, 205, 104, 203, 201, 205, 207, 208, 202, 203, 103, 103] +03 二月 2026 | 05:13:12,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:15,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:18,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:21,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:24,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:25,103 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:13:25,103 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:13:25,103 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:297196 +03 二月 2026 | 05:13:25,566 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:13:27,221 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:297196 +03 二月 2026 | 05:13:27,273 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:13:27,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:13:27,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:13:27,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:13:27,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:13:27,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:13:28,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:13:28,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:13:28,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7051000 +03 二月 2026 | 05:13:28,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:13:28,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:13:28,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:13:28,513 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7ed13e4c +03 二月 2026 | 05:13:29,190 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:13:29,190 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:13:29,190 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:13:29,228 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:13:29,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:13:29,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:13:29,746 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=297196, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:13:31,566 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:13:31,567 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:13:32,833 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:13:36,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:39,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:42,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:45,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:48,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:13:51,572 | ERROR | Thread-41 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:13:51,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:13:54,703 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:14:00,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:03,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:06,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:09,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:11,578 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:14:11,580 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:14:15,707 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:14:21,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:24,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:27,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:30,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:33,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:36,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:41,584 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:14:41,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:14:42,708 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:14:48,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:51,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:54,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:14:57,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:00,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:01,594 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:15:01,598 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:15:06,698 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:15:12,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:15,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:18,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:21,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:24,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:27,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:31,597 | ERROR | Thread-59 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:15:31,601 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:15:33,707 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:15:39,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:42,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:45,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:48,663 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:15:51,604 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:15:51,605 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:15:56,760 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:15:56,806 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:15:57,088 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:15:57,325 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:16:01,829 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:109 +03 二月 2026 | 05:16:01,951 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:16:02,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:16:02,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:16:02,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:297196 +03 二月 2026 | 05:16:02,773 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:16:04,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:297196 +03 二月 2026 | 05:16:04,961 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:16:05,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:16:05,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:16:05,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:16:05,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:16:05,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:16:05,879 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:16:05,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:16:05,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7051000 +03 二月 2026 | 05:16:05,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:16:05,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:16:06,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:16:06,316 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@112d3cad +03 二月 2026 | 05:16:07,020 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:16:07,020 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:16:07,020 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:16:07,059 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:16:07,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:16:07,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:16:07,570 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=297196, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:16:10,606 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:10,606 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:10,607 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:10,633 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:16:10,861 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:16:11,038 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:16:11,108 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@45f69803 +03 二月 2026 | 05:16:12,088 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:15,088 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:18,087 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:21,087 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:24,088 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:27,088 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:30,088 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:33,087 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:36,088 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:41,651 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:16:41,695 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:16:41,977 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:16:42,209 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:16:46,648 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:110 +03 二月 2026 | 05:16:46,787 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:16:47,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:50,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:53,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:56,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:16:59,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:02,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:05,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:11,628 | ERROR | Thread-30 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:17:11,634 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:17:12,023 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:17:17,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:20,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:23,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:26,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:29,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:31,635 | ERROR | Thread-34 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:17:31,640 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:17:36,020 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:17:41,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:44,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:47,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:50,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:53,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:17:56,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:01,643 | ERROR | Thread-38 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:18:01,647 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:18:03,024 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:18:08,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:11,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:14,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:17,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:20,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:21,647 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:18:21,650 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:18:27,023 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:18:32,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:35,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:38,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:41,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:44,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:47,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:18:51,656 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:18:51,658 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:18:54,019 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:18:59,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:02,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:05,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:08,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:11,660 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:19:11,661 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:19:15,015 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:19:15,426 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:19:15,426 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:19:15,426 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:592237 +03 二月 2026 | 05:19:16,057 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:19:18,322 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:592237 +03 二月 2026 | 05:19:18,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:19:18,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:19:18,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:19:18,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:19:18,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:19:19,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:19:19,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:19:19,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:19:19,272 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6655000 +03 二月 2026 | 05:19:19,272 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:19:19,272 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:19:19,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:19:19,656 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3a3a4dbc +03 二月 2026 | 05:19:20,319 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:19:20,319 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:19:20,319 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:19:20,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:19:20,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:19:20,582 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:19:20,905 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=592237, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:19:23,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:23,968 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:19:23,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:24,243 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:19:24,436 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:19:24,506 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@a6d79de +03 二月 2026 | 05:19:24,506 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 104, 101, 203, 206, 106, 208, 202, 202, 108, 201, 103, 105, 201] +03 二月 2026 | 05:19:24,507 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:19:24,507 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:19:24,507 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:19:24,507 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 05:19:26,829 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 101, 203, 206, 106, 208, 202, 202, 108, 201, 103, 105, 201, 108] +03 二月 2026 | 05:19:26,829 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:19:26,829 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:19:26,829 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:19:26,829 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 102, 103] +03 二月 2026 | 05:19:26,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:29,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:32,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:35,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:38,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:41,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:44,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:47,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:50,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:53,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:56,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:19:59,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:02,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:05,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:08,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:11,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:13,221 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 203, 206, 106, 208, 202, 202, 108, 105, 201, 108] +03 二月 2026 | 05:20:13,221 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:20:13,221 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[102, 103, 101] +03 二月 2026 | 05:20:13,221 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:20:13,221 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 102, 201, 102, 103] +03 二月 2026 | 05:20:14,801 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 203, 206, 106, 208, 202, 108, 105, 201, 108, 204] +03 二月 2026 | 05:20:14,801 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:20:14,801 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[102, 103, 101] +03 二月 2026 | 05:20:14,801 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:20:14,801 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 201, 202, 102, 103, 103, 101] +03 二月 2026 | 05:20:14,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:17,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 203, 206, 106, 202, 108, 105, 201, 108, 204, 107] +03 二月 2026 | 05:20:17,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:20:17,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[102, 103, 101] +03 二月 2026 | 05:20:17,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:20:17,095 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 102, 201, 202, 102, 103, 209, 207, 103, 101] +03 二月 2026 | 05:20:17,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:20,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:23,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:26,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:29,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:30,450 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:20:30,450 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:20:30,450 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:996667 +03 二月 2026 | 05:20:30,827 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:20:32,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:996667 +03 二月 2026 | 05:20:32,454 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:20:32,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 05:20:32,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:20:32,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:20:32,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:20:33,065 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:20:33,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:20:33,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:20:33,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6979000 +03 二月 2026 | 05:20:33,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:20:33,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:20:33,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:20:33,582 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3a3a4dbc +03 二月 2026 | 05:20:34,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:20:34,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:20:34,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:20:34,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:20:34,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:20:34,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:20:34,770 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=996667, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:20:37,814 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:37,814 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:38,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:41,687 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:20:41,690 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:20:45,017 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:20:50,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:53,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:56,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:20:59,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:01,692 | ERROR | Thread-63 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:21:01,695 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:21:06,024 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:21:11,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:14,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:17,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:20,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:23,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:26,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:31,700 | ERROR | Thread-67 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:21:31,703 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:21:33,016 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:21:38,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:41,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:44,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:47,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:50,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:21:51,706 | ERROR | Thread-72 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:21:51,708 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:21:57,026 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:22:02,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:05,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:08,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:11,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:14,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:17,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:21,718 | ERROR | Thread-77 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:22:21,721 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:22:24,024 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:22:29,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:32,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:35,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:38,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:41,775 | ERROR | Thread-81 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:22:41,776 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:22:45,022 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:22:50,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:53,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:56,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:22:59,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:01,726 | ERROR | Thread-85 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:23:01,729 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:23:06,016 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:23:11,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:14,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:17,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:20,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:23,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:26,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:31,734 | ERROR | Thread-90 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:23:31,737 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:23:33,026 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:23:38,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:41,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:44,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:47,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:50,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:23:51,743 | ERROR | Thread-94 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:23:51,745 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:23:57,025 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:24:02,978 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:05,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:08,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:11,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:14,977 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:17,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:21,752 | ERROR | Thread-99 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:24:21,754 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:24:24,016 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:24:32,635 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:24:32,685 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:24:32,947 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:24:33,172 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:24:37,738 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:111 +03 二月 2026 | 05:24:37,871 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:24:38,165 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:24:38,165 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:24:38,165 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:996667 +03 二月 2026 | 05:24:38,657 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:24:40,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:996667 +03 二月 2026 | 05:24:40,963 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:24:41,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:24:41,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:24:41,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:24:41,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:24:41,819 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:24:41,943 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:24:41,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:24:41,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:6979000 +03 二月 2026 | 05:24:41,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:24:41,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:24:42,162 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:24:42,426 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4909c3e7 +03 二月 2026 | 05:24:43,208 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:24:43,208 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:24:43,208 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:24:43,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:24:43,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:24:43,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:24:43,787 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=996667, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:24:46,824 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:46,825 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:46,825 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:46,861 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:24:47,097 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:24:47,306 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:24:47,387 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@75a62da2 +03 二月 2026 | 05:24:47,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:48,828 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 201, 206, 107, 102, 102, 203, 204, 102, 208, 205, 202, 106, 109] +03 二月 2026 | 05:24:48,828 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:24:48,828 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:24:48,828 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:24:48,828 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103] +03 二月 2026 | 05:24:50,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:53,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:56,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:24:57,155 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 201, 206, 107, 102, 102, 203, 204, 102, 208, 205, 202, 106, 108] +03 二月 2026 | 05:24:57,155 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:24:57,155 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:24:57,155 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:24:57,155 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 202, 109] +03 二月 2026 | 05:24:59,949 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:02,213 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 206, 107, 102, 102, 203, 204, 102, 208, 205, 202, 106, 108, 101] +03 二月 2026 | 05:25:02,214 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:25:02,214 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:25:02,214 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:25:02,214 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 202, 107, 109, 201] +03 二月 2026 | 05:25:02,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:03,754 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 206, 107, 102, 102, 203, 204, 102, 208, 205, 202, 106, 108, 103] +03 二月 2026 | 05:25:03,754 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:25:03,755 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:25:03,755 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:25:03,755 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 202, 107, 109, 109, 201, 101] +03 二月 2026 | 05:25:05,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:06,636 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 206, 107, 102, 102, 203, 204, 102, 208, 205, 202, 106, 108, 208] +03 二月 2026 | 05:25:06,636 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:25:06,636 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:25:06,636 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:25:06,636 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 202, 107, 109, 109, 109, 201, 101, 104, 105] +03 二月 2026 | 05:25:08,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:11,949 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:12,096 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 107, 102, 102, 203, 204, 102, 208, 205, 202, 106, 108, 208, 104] +03 二月 2026 | 05:25:12,097 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:25:12,097 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:25:12,097 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:25:12,097 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 202, 107, 109, 109, 203, 109, 201, 101, 104, 105, 206, 204] +03 二月 2026 | 05:25:13,707 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 107, 102, 102, 203, 204, 102, 208, 205, 202, 106, 108, 208, 101] +03 二月 2026 | 05:25:13,707 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:25:13,707 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:25:13,707 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:25:13,707 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 202, 107, 109, 109, 203, 103, 109, 201, 101, 104, 104, 105, 206, 204] +03 二月 2026 | 05:25:14,949 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:15,090 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 107, 102, 102, 203, 204, 102, 208, 205, 202, 106, 108, 208, 208] +03 二月 2026 | 05:25:15,090 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:25:15,090 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:25:15,090 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:25:15,090 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 202, 107, 109, 109, 203, 103, 104, 109, 201, 101, 104, 101, 104, 105, 206, 204] +03 二月 2026 | 05:25:16,733 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 107, 102, 102, 203, 204, 102, 205, 202, 106, 108, 208, 208, 107] +03 二月 2026 | 05:25:16,733 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:25:16,733 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:25:16,733 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:25:16,733 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 202, 107, 109, 109, 203, 103, 104, 203, 109, 201, 101, 104, 101, 208, 104, 105, 206, 204] +03 二月 2026 | 05:25:17,949 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:20,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:23,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:26,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:29,949 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:30,467 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:25:30,467 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:25:30,467 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:353420 +03 二月 2026 | 05:25:30,928 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:25:32,754 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:353420 +03 二月 2026 | 05:25:32,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:25:33,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:25:33,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:25:33,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:25:33,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:25:33,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:25:33,656 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:25:33,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:25:33,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7423000 +03 二月 2026 | 05:25:33,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:25:33,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:25:33,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:25:34,138 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4909c3e7 +03 二月 2026 | 05:25:34,925 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:25:34,925 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:25:34,925 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:25:34,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:25:35,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:25:35,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[127.0.0.1, 6311, 47.109.55.7] +03 二月 2026 | 05:25:35,516 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=353420, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:25:38,550 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:38,550 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:41,771 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:25:41,776 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:25:41,991 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:25:47,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:50,949 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:53,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:56,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:25:59,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:01,779 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:26:01,782 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:26:05,989 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:26:11,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:14,949 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:17,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:20,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:23,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:26,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:31,787 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:26:31,790 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:26:32,989 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:26:38,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:41,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:44,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:47,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:50,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:26:51,792 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:26:51,795 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:26:56,987 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:27:02,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:05,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:08,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:11,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:14,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:17,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:18,620 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:27:18,625 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:27:26,155 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:27:29,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:32,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:38,850 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:27:38,894 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:27:39,144 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:27:39,367 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:27:43,589 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:112 +03 二月 2026 | 05:27:43,710 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:27:44,083 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:27:44,083 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:27:44,083 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:353420 +03 二月 2026 | 05:27:44,537 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:27:46,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:353420 +03 二月 2026 | 05:27:46,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:27:46,940 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:27:47,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:27:47,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:27:47,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:27:47,551 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:27:47,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:27:47,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:27:47,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7423000 +03 二月 2026 | 05:27:47,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:27:47,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:27:47,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:27:48,105 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1e302ac6 +03 二月 2026 | 05:27:48,845 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:27:48,845 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:27:48,845 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:27:48,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:27:48,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:27:49,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 05:27:49,423 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=353420, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:27:52,471 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:52,471 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:52,471 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:52,489 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:27:52,735 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:27:52,916 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:27:52,986 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@75a62da2 +03 二月 2026 | 05:27:54,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:27:54,661 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 101, 206, 201, 202, 104, 106, 205, 108, 104, 105, 108, 103, 207] +03 二月 2026 | 05:27:54,661 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:27:54,661 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:27:54,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:27:54,663 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201] +03 二月 2026 | 05:27:57,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:00,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:03,142 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:06,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:09,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:12,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:15,871 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:28:15,875 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:28:18,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:28:24,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:27,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:30,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:33,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:33,612 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:28:33,612 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:28:33,612 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:618541 +03 二月 2026 | 05:28:34,032 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:28:35,630 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:28:35,632 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:28:35,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:618541 +03 二月 2026 | 05:28:35,853 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:28:36,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:28:36,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:28:36,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:28:36,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:28:36,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:28:36,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:28:36,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:28:36,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7867000 +03 二月 2026 | 05:28:36,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:28:36,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:28:36,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:28:37,108 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1e302ac6 +03 二月 2026 | 05:28:37,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:28:37,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:28:37,847 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:28:37,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:28:37,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:28:38,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 05:28:38,418 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=618541, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:28:41,508 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:28:45,142 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:48,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:51,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:54,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:28:57,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:00,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:05,638 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:29:05,639 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:29:06,185 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:29:12,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:15,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:18,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:21,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:24,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:25,645 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:29:25,646 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:29:30,187 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:29:36,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:39,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:42,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:45,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:48,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:51,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:29:55,653 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:29:55,654 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:29:57,195 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:30:03,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:06,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:09,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:12,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:15,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:15,662 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:30:15,666 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:30:21,194 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:30:27,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:30,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:36,535 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:30:36,577 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:30:36,803 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:30:37,020 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:30:41,401 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:113 +03 二月 2026 | 05:30:41,527 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:30:41,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:30:41,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:30:41,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:618541 +03 二月 2026 | 05:30:42,365 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:30:44,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:618541 +03 二月 2026 | 05:30:44,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:30:44,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:30:44,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:30:44,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:30:44,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:30:45,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:30:45,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:30:45,448 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:30:45,448 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7867000 +03 二月 2026 | 05:30:45,448 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:30:45,448 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:30:45,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:30:45,846 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@699cf817 +03 二月 2026 | 05:30:46,553 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:30:46,553 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:30:46,553 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:30:46,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:30:46,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:30:46,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 05:30:47,074 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=618541, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:30:50,115 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:50,115 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:50,116 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:50,140 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:30:50,382 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:30:50,574 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:30:50,657 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@a6d79de +03 二月 2026 | 05:30:50,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 106, 204, 202, 203, 203, 203, 202, 201, 206, 208, 209, 201, 205] +03 二月 2026 | 05:30:50,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:30:50,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:30:50,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:30:50,705 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 05:30:51,803 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:54,804 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:30:57,804 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:00,803 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:03,802 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:06,802 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:08,744 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[106, 204, 202, 203, 203, 203, 202, 201, 206, 208, 209, 201, 205, 106] +03 二月 2026 | 05:31:08,745 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:31:08,745 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:31:08,745 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:31:08,745 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 107, 106] +03 二月 2026 | 05:31:09,804 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:10,973 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 202, 203, 203, 203, 202, 201, 206, 208, 209, 201, 205, 106, 103] +03 二月 2026 | 05:31:10,973 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:31:10,973 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:31:10,973 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:31:10,973 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 106, 107, 106] +03 二月 2026 | 05:31:11,887 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 202, 203, 203, 203, 202, 201, 206, 208, 209, 201, 205, 103, 101] +03 二月 2026 | 05:31:11,888 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:31:11,888 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:31:11,888 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:31:11,888 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 106, 106, 107, 106] +03 二月 2026 | 05:31:12,803 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:13,409 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 202, 203, 203, 203, 202, 206, 208, 209, 205, 103] +03 二月 2026 | 05:31:13,409 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[201, 201, 201] +03 二月 2026 | 05:31:13,409 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:31:13,409 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:31:13,409 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 103, 201, 106, 106, 101, 107, 106] +03 二月 2026 | 05:31:15,804 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:18,804 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:21,803 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:24,802 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:27,802 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:30,803 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:33,804 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:36,803 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:39,803 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:40,328 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:31:40,328 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:31:40,328 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:346778 +03 二月 2026 | 05:31:40,766 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:31:42,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:346778 +03 二月 2026 | 05:31:42,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:31:42,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:31:42,710 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:31:42,710 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:31:42,710 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:31:43,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:31:43,141 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:31:43,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:31:43,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8341000 +03 二月 2026 | 05:31:43,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:31:43,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:31:43,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:31:43,564 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@699cf817 +03 二月 2026 | 05:31:44,236 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:31:44,236 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:31:44,236 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:31:44,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:31:44,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:31:44,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 05:31:44,744 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=346778, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:31:45,687 | ERROR | Thread-30 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:31:45,692 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:31:47,822 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:31:51,802 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:31:54,804 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:17,250 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:47:17,296 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:47:17,553 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:47:17,771 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:47:22,007 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:114 +03 二月 2026 | 05:47:22,141 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:47:22,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:47:22,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:47:22,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:346778 +03 二月 2026 | 05:47:22,988 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:47:25,005 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:346778 +03 二月 2026 | 05:47:25,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:47:25,216 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:47:25,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:47:25,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:47:25,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:47:25,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:47:25,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:47:25,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:47:25,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8341000 +03 二月 2026 | 05:47:25,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:47:25,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:47:26,133 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:47:26,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e74f5c2 +03 二月 2026 | 05:47:27,049 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:47:27,049 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:47:27,049 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:47:27,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:47:27,129 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:47:27,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 05:47:27,597 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=346778, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:47:30,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:30,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:30,643 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:30,667 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:47:30,930 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:47:31,174 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:47:31,270 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@4ecd01f8 +03 二月 2026 | 05:47:32,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:35,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:38,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:41,553 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:44,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:46,815 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 201, 205, 109, 202, 101, 101, 103, 107, 207, 108, 105, 103, 201] +03 二月 2026 | 05:47:46,815 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:47:46,815 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:47:46,815 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:47:46,815 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101] +03 二月 2026 | 05:47:47,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:50,553 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:53,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:54,132 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 201, 205, 109, 202, 101, 107, 207, 108, 103, 201] +03 二月 2026 | 05:47:54,132 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:47:54,132 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[104, 105, 103] +03 二月 2026 | 05:47:54,132 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:47:54,132 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 104, 101] +03 二月 2026 | 05:47:55,567 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 205, 109, 202, 101, 107, 207, 108, 103, 201, 208] +03 二月 2026 | 05:47:55,568 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:47:55,568 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[104, 105, 103] +03 二月 2026 | 05:47:55,568 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:47:55,569 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 101, 201, 105, 103] +03 二月 2026 | 05:47:56,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:47:57,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 205, 109, 202, 101, 107, 207, 108, 103, 208, 106] +03 二月 2026 | 05:47:57,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:47:57,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[104, 105, 103] +03 二月 2026 | 05:47:57,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:47:57,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 101, 201, 201, 105, 103] +03 二月 2026 | 05:47:59,395 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 205, 109, 101, 107, 207, 108, 103, 208, 106, 203] +03 二月 2026 | 05:47:59,396 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:47:59,396 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[104, 105, 103] +03 二月 2026 | 05:47:59,396 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:47:59,396 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 205, 101, 201, 201, 203, 204, 105, 103] +03 二月 2026 | 05:47:59,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:01,602 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 205, 101, 107, 207, 108, 103, 208, 106, 203, 104] +03 二月 2026 | 05:48:01,602 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:48:01,602 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[104, 105, 103] +03 二月 2026 | 05:48:01,602 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:48:01,602 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 205, 106, 101, 201, 201, 203, 204, 108, 107, 105, 103] +03 二月 2026 | 05:48:02,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:02,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 205, 107, 207, 108, 103, 208, 106, 203, 104, 206] +03 二月 2026 | 05:48:02,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:48:02,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[104, 105, 103] +03 二月 2026 | 05:48:02,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:48:02,886 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 205, 106, 209, 101, 201, 201, 101, 203, 204, 108, 107, 105, 103] +03 二月 2026 | 05:48:05,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:05,589 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 205, 107, 207, 108, 103, 208, 106, 104, 206, 201] +03 二月 2026 | 05:48:05,590 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:48:05,590 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[104, 105, 103] +03 二月 2026 | 05:48:05,590 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:48:05,590 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 205, 106, 209, 206, 101, 201, 201, 101, 203, 204, 108, 107, 204, 205, 105, 103] +03 二月 2026 | 05:48:06,842 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 205, 107, 207, 108, 103, 208, 106, 104, 206, 102] +03 二月 2026 | 05:48:06,842 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:48:06,842 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[104, 105, 103] +03 二月 2026 | 05:48:06,842 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:48:06,842 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 109, 205, 106, 209, 206, 106, 101, 201, 201, 101, 201, 203, 204, 108, 107, 204, 205, 105, 103] +03 二月 2026 | 05:48:08,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:11,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:14,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:17,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:20,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:23,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:24,056 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:48:24,056 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:48:24,056 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:959201 +03 二月 2026 | 05:48:24,553 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:48:25,737 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:48:25,742 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:48:26,267 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:959201 +03 二月 2026 | 05:48:26,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:48:26,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:48:26,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:48:26,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:48:26,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:48:27,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:48:27,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:48:27,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:48:27,177 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8065000 +03 二月 2026 | 05:48:27,177 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:48:27,177 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:48:27,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:48:27,559 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e74f5c2 +03 二月 2026 | 05:48:28,245 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:48:28,245 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:48:28,245 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:48:28,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:48:28,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:48:28,495 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 05:48:28,833 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=959201, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:48:31,916 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:48:35,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:38,553 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:41,552 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:48:48,981 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:48:49,023 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:48:49,262 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:48:49,480 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:48:53,892 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:115 +03 二月 2026 | 05:48:54,030 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:48:54,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:48:54,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:48:54,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:959201 +03 二月 2026 | 05:48:54,842 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:48:56,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:959201 +03 二月 2026 | 05:48:56,929 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:48:57,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:48:57,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:48:57,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:48:57,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:48:57,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:48:57,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:48:57,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:48:57,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8065000 +03 二月 2026 | 05:48:57,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:48:57,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:48:58,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:48:58,252 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@34209e39 +03 二月 2026 | 05:48:58,938 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:48:58,938 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:48:58,938 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:48:58,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:48:59,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:48:59,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 05:48:59,450 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=959201, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:49:02,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:02,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:02,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:02,521 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:49:02,752 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:49:02,957 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:49:03,039 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@280fd15e +03 二月 2026 | 05:49:04,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:07,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:07,547 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 209, 209, 205, 208, 107, 206, 106, 108, 104, 204, 107, 206, 105] +03 二月 2026 | 05:49:07,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:49:07,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:49:07,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:49:07,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101] +03 二月 2026 | 05:49:10,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:13,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:16,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:19,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:22,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:25,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:28,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:31,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:34,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:37,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:40,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:43,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:46,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:49,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:52,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:55,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:49:58,261 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:01,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:04,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:07,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:07,807 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 209, 205, 208, 107, 206, 106, 108, 104, 204, 107, 206, 105, 207] +03 二月 2026 | 05:50:07,807 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:50:07,807 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 05:50:07,807 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:50:07,807 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 209] +03 二月 2026 | 05:50:10,262 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:10,517 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 209, 205, 208, 206, 106, 104, 204, 206, 105, 207] +03 二月 2026 | 05:50:10,517 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 05:50:10,517 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[109, 108, 107] +03 二月 2026 | 05:50:10,517 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 05:50:10,517 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 204, 109, 209, 107] +03 二月 2026 | 05:50:15,606 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:50:15,657 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:50:15,960 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:50:16,191 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:50:20,597 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:116 +03 二月 2026 | 05:50:20,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:50:21,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:24,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:27,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:30,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:33,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:36,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:39,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:45,776 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:50:45,779 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:50:46,007 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:50:51,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:54,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:50:57,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:00,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:01,415 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:51:01,415 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:51:01,416 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:320617 +03 二月 2026 | 05:51:02,016 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:51:04,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:320617 +03 二月 2026 | 05:51:04,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:51:04,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:51:04,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:51:04,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:51:04,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:51:04,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:51:05,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:51:05,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:51:05,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8064000 +03 二月 2026 | 05:51:05,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:51:05,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:51:05,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:51:05,567 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2d6dc75a +03 二月 2026 | 05:51:05,782 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:51:05,784 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:51:06,285 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:51:06,285 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:51:06,285 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:51:06,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:51:06,377 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:51:06,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 05:51:06,895 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=320617, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:51:09,985 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:51:10,002 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:51:15,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:18,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:21,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:24,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:27,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:30,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:35,790 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:51:35,791 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:51:35,793 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:51:35,796 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:51:37,004 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:51:42,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:45,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:48,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:51,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:54,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:51:55,795 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:51:55,798 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:52:01,005 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:52:06,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:09,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:12,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:15,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:18,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:21,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:25,809 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:52:25,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:52:28,012 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:52:33,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:36,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:39,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:42,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:45,815 | ERROR | Thread-58 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:52:45,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:52:49,001 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:52:54,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:52:57,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:00,962 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:03,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:05,818 | ERROR | Thread-62 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:53:05,820 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:53:10,006 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:53:15,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:21,824 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:53:21,867 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:53:22,129 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:53:22,349 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:53:26,329 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:117 +03 二月 2026 | 05:53:26,457 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:53:26,825 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 05:53:26,825 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 05:53:26,825 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:320617 +03 二月 2026 | 05:53:27,282 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 05:53:29,368 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:320617 +03 二月 2026 | 05:53:29,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:53:29,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 05:53:29,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 05:53:29,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 05:53:29,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 05:53:30,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 05:53:30,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 05:53:30,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 05:53:30,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8064000 +03 二月 2026 | 05:53:30,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 05:53:30,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 05:53:30,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 05:53:30,723 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6f752822 +03 二月 2026 | 05:53:31,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 05:53:31,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 05:53:31,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 05:53:31,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 05:53:31,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 05:53:31,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 05:53:31,991 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=320617, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 05:53:35,037 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:35,037 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:35,039 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:35,065 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 05:53:35,317 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 05:53:35,521 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 05:53:35,601 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@a6d79de +03 二月 2026 | 05:53:37,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:40,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:43,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:46,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:49,129 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:52,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:55,129 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:53:58,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:01,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:04,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:07,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:10,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:13,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:16,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:19,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:22,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:25,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:54:28,130 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:55:44,289 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:55:44,331 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:55:44,621 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:55:44,847 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:55:49,315 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:118 +03 二月 2026 | 05:55:49,450 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:55:50,621 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:55:53,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:55:56,621 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:55:59,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:02,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:05,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:05,868 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:56:05,878 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:56:11,666 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:56:17,621 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:20,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:23,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:26,621 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:29,621 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:32,621 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:35,878 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:56:35,887 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:56:38,682 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:56:44,621 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:47,621 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:50,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:53,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:56:55,892 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:56:55,897 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:56:59,668 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:57:05,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:57:08,622 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:57:35,207 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 05:57:35,251 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 05:57:35,549 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 05:57:35,780 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 05:57:40,144 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:119 +03 二月 2026 | 05:57:40,289 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:57:45,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:57:50,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:57:55,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:58:00,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:58:05,664 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:58:05,669 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:58:10,598 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:58:20,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:58:25,550 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:58:30,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:58:35,667 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:58:35,674 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:58:40,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:58:50,550 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:58:55,550 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:59:00,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:59:05,674 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:59:05,676 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:59:10,604 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:59:20,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:59:25,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:59:30,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:59:35,687 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 05:59:35,695 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 05:59:40,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 05:59:50,550 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 05:59:55,550 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:00:00,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:00:05,693 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:00:05,696 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:00:10,603 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:00:20,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:00:25,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:00:30,549 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:00:35,700 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:00:35,704 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:00:40,595 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:00:50,548 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:00:54,842 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:00:54,886 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:00:55,148 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:00:55,370 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:00:59,509 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:120 +03 二月 2026 | 06:00:59,639 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:01:00,323 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:01,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:03,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:05,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:07,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:09,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:11,148 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:13,148 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:15,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:15,716 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:01:15,727 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:01:19,200 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:01:23,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:25,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:27,148 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:32,792 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:01:32,838 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:01:33,117 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:01:33,346 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:01:37,373 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:121 +03 二月 2026 | 06:01:37,523 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:01:43,117 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:48,118 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:53,117 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:01:55,725 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:01:55,733 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:02:03,165 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:02:10,422 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:02:10,473 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:02:10,757 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:02:11,014 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:02:15,246 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:122 +03 二月 2026 | 06:02:15,380 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:02:20,758 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:02:21,280 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:02:21,280 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:02:21,280 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:421530 +03 二月 2026 | 06:02:21,867 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:02:24,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:421530 +03 二月 2026 | 06:02:24,062 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:02:24,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:02:24,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:02:24,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:02:24,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:02:24,869 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:02:24,977 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:02:25,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:02:25,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7608000 +03 二月 2026 | 06:02:25,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:02:25,025 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:02:25,195 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:02:25,422 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e8fcf2e +03 二月 2026 | 06:02:26,100 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:02:26,100 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:02:26,100 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:02:26,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:02:26,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:02:26,374 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:02:26,708 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=421530, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:02:28,752 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:02:30,757 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:02:35,758 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:02:40,757 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:04:02,855 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:04:02,899 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:04:03,203 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:04:03,430 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:04:07,413 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:123 +03 二月 2026 | 06:04:07,549 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:04:07,948 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:04:07,949 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:04:07,949 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:421530 +03 二月 2026 | 06:04:08,382 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:04:10,250 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:421530 +03 二月 2026 | 06:04:10,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:04:10,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:04:10,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:04:10,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:04:10,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:04:10,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:04:11,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:04:11,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:04:11,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:7608000 +03 二月 2026 | 06:04:11,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:04:11,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:04:11,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:04:11,483 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@50e6af6f +03 二月 2026 | 06:04:12,119 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:04:12,119 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:04:12,119 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:04:12,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:04:12,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:04:12,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:04:12,610 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=421530, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:04:15,655 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:04:15,677 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 06:04:15,922 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 06:04:16,141 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 06:04:16,225 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@a6d79de +03 二月 2026 | 06:04:18,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:04:19,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 103, 104, 101, 107, 106, 107, 207, 102, 105, 103, 208, 106, 106] +03 二月 2026 | 06:04:19,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:04:19,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:04:19,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:04:19,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101] +03 二月 2026 | 06:04:23,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:04:24,512 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 103, 104, 101, 107, 106, 107, 102, 105, 103, 208, 106, 106, 201] +03 二月 2026 | 06:04:24,512 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:04:24,512 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:04:24,512 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:04:24,512 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 208, 209] +03 二月 2026 | 06:04:28,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:04:28,521 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 103, 104, 101, 107, 102, 105, 103, 208, 106, 106] +03 二月 2026 | 06:04:28,521 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:04:28,521 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[108, 107, 106] +03 二月 2026 | 06:04:28,521 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:04:28,521 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 108, 201, 208, 209] +03 二月 2026 | 06:04:33,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:04:34,159 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 103, 104, 101, 107, 102, 105, 103, 106, 106, 203] +03 二月 2026 | 06:04:34,159 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:04:34,159 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[108, 107, 106] +03 二月 2026 | 06:04:34,160 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:04:34,161 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 206, 201, 208, 209, 209, 207, 107, 106] +03 二月 2026 | 06:04:38,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:04:43,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:04:48,203 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:04:48,701 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:04:48,701 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:04:48,701 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:122456 +03 二月 2026 | 06:04:49,111 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:04:50,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:122456 +03 二月 2026 | 06:04:50,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:04:50,815 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:04:50,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:04:50,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:04:50,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:04:51,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:04:51,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:04:51,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:04:51,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8052000 +03 二月 2026 | 06:04:51,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:04:51,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:04:51,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:04:51,741 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@50e6af6f +03 二月 2026 | 06:04:52,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:04:52,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:04:52,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:04:52,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:04:52,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:04:52,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:04:52,874 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=122456, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:04:55,779 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:04:55,787 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:04:56,301 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:04:56,301 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:04:56,301 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:122456 +03 二月 2026 | 06:04:56,632 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:04:58,224 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:122456 +03 二月 2026 | 06:04:58,261 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:04:58,433 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:04:58,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:04:58,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:04:58,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:04:58,869 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:04:58,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:04:59,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:04:59,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8052000 +03 二月 2026 | 06:04:59,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:04:59,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:04:59,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:04:59,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@50e6af6f +03 二月 2026 | 06:05:00,005 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:05:00,005 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:05:00,005 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:05:00,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:05:00,076 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:05:00,219 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:05:00,504 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=122456, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:05:03,600 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:05:03,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:05:03,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:05:03,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:122456 +03 二月 2026 | 06:05:04,453 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:05:06,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:122456 +03 二月 2026 | 06:05:06,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:05:06,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:05:06,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:05:06,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:05:06,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:05:06,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:05:06,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:05:06,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:05:06,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8052000 +03 二月 2026 | 06:05:06,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:05:06,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:05:06,999 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:05:07,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@50e6af6f +03 二月 2026 | 06:05:07,899 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:05:07,899 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:05:07,899 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:05:07,933 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:05:07,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:05:08,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:05:08,379 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=122456, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:05:11,421 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:11,451 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 06:05:11,720 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 06:05:11,920 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 06:05:11,997 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@59449884 +03 二月 2026 | 06:05:11,998 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 205, 101, 203, 104, 209, 204, 102, 209, 101, 208, 105, 202, 203] +03 二月 2026 | 06:05:11,998 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:11,998 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:05:11,998 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:11,998 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101, 206, 201, 201, 203, 208, 209, 209, 207, 107, 106] +03 二月 2026 | 06:05:13,203 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:16,851 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 205, 101, 203, 104, 204, 102, 209, 101, 208, 105, 202, 203, 109] +03 二月 2026 | 06:05:16,851 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:16,851 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:05:16,851 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:16,851 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209] +03 二月 2026 | 06:05:18,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:20,621 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 205, 203, 104, 204, 102, 209, 101, 208, 105, 202, 203, 109, 108] +03 二月 2026 | 06:05:20,621 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:20,622 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:05:20,622 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:20,622 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209, 209, 102, 103] +03 二月 2026 | 06:05:23,207 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:27,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 205, 104, 204, 102, 209, 208, 105, 203, 109, 108] +03 二月 2026 | 06:05:27,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:27,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 06:05:27,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:27,775 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209, 201, 209, 101, 102, 103] +03 二月 2026 | 06:05:28,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:29,661 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 205, 104, 204, 209, 208, 105, 203, 109, 108, 204] +03 二月 2026 | 06:05:29,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:29,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 06:05:29,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:29,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209, 201, 209, 101, 102, 102, 103, 202, 203] +03 二月 2026 | 06:05:33,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:33,977 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 205, 104, 209, 208, 105, 203, 109, 108, 204, 103] +03 二月 2026 | 06:05:33,977 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:33,977 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 06:05:33,977 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:33,978 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209, 201, 204, 209, 101, 102, 102, 103, 205, 206, 202, 203] +03 二月 2026 | 06:05:36,526 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 205, 104, 208, 105, 203, 109, 108, 204, 103, 103] +03 二月 2026 | 06:05:36,526 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:36,526 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 06:05:36,526 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:36,526 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209, 201, 204, 105, 209, 101, 102, 102, 103, 205, 206, 208, 207, 202, 203] +03 二月 2026 | 06:05:38,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:38,441 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 205, 104, 208, 105, 203, 109, 108, 204, 103, 207] +03 二月 2026 | 06:05:38,441 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:38,441 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 06:05:38,441 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:38,441 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209, 201, 204, 105, 207, 209, 101, 102, 103, 102, 103, 205, 206, 208, 207, 202, 203] +03 二月 2026 | 06:05:40,320 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 205, 104, 208, 105, 203, 109, 108, 204, 103, 101] +03 二月 2026 | 06:05:40,320 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:40,320 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 06:05:40,320 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:40,320 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209, 201, 204, 105, 207, 206, 209, 101, 102, 103, 207, 102, 103, 205, 206, 208, 207, 202, 203] +03 二月 2026 | 06:05:43,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:48,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:48,816 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:05:48,816 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:05:48,816 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:774793 +03 二月 2026 | 06:05:49,231 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:05:50,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:774793 +03 二月 2026 | 06:05:50,825 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:05:51,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:05:51,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:05:51,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:05:51,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:05:51,434 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:05:51,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:05:51,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:05:51,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8346000 +03 二月 2026 | 06:05:51,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:05:51,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:05:51,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:05:51,929 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@50e6af6f +03 二月 2026 | 06:05:52,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:05:52,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:05:52,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:05:52,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:05:52,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:05:52,774 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:05:53,060 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=774793, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:05:56,101 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:56,127 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 06:05:56,371 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:907904 +03 二月 2026 | 06:05:56,566 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++907904 +03 二月 2026 | 06:05:56,642 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@59449884 +03 二月 2026 | 06:05:56,649 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 109, 205, 203, 106, 107, 103, 105, 202, 105, 202, 106, 209, 102] +03 二月 2026 | 06:05:56,649 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:56,649 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:05:56,649 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:56,649 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209, 201, 204, 105, 207, 206, 208, 209, 101, 102, 103, 207, 101, 102, 103, 205, 206, 208, 207, 202, 203] +03 二月 2026 | 06:05:58,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:05:59,308 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 205, 203, 106, 107, 103, 105, 202, 105, 202, 106, 209, 102, 204] +03 二月 2026 | 06:05:59,308 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:05:59,308 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:05:59,308 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:05:59,308 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 109, 109] +03 二月 2026 | 06:06:03,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:06:05,520 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 205, 203, 106, 107, 103, 105, 202, 105, 202, 106, 102, 204, 103] +03 二月 2026 | 06:06:05,520 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:06:05,521 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:06:05,521 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:06:05,521 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 202, 209, 109, 109] +03 二月 2026 | 06:06:08,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:06:08,238 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 203, 106, 107, 103, 105, 202, 105, 202, 106, 102, 204, 103, 108] +03 二月 2026 | 06:06:08,238 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:06:08,238 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:06:08,238 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:06:08,238 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 202, 204, 209, 207, 206, 109, 109] +03 二月 2026 | 06:06:10,440 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 203, 106, 107, 105, 202, 105, 202, 106, 102, 204, 103, 108, 205] +03 二月 2026 | 06:06:10,440 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:06:10,440 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 06:06:10,440 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:06:10,441 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 202, 204, 206, 209, 207, 206, 109, 109, 103, 103] +03 二月 2026 | 06:06:12,348 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 203, 107, 105, 202, 106, 102, 204, 103, 108, 205] +03 二月 2026 | 06:06:12,348 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:06:12,348 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[107, 106, 105] +03 二月 2026 | 06:06:12,348 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:06:12,348 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 202, 204, 206, 107, 209, 202, 207, 206, 109, 109, 103, 103] +03 二月 2026 | 06:06:13,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:06:14,767 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 203, 107, 202, 106, 102, 204, 103, 108, 205, 207] +03 二月 2026 | 06:06:14,767 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 06:06:14,767 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[107, 106, 105] +03 二月 2026 | 06:06:14,767 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 06:06:14,768 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 202, 204, 206, 105, 209, 202, 207, 206, 106, 104, 106, 105, 109, 109, 103, 103] +03 二月 2026 | 06:06:18,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:06:23,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:06:28,203 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:06:33,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:06:35,809 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:06:35,811 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:06:43,249 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:06:53,202 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:06:58,204 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:07:03,218 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:07:03,262 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:07:03,538 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:07:03,784 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:07:07,701 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:124 +03 二月 2026 | 06:07:07,851 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:07:13,538 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:07:18,538 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:07:23,538 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:07:25,825 | ERROR | Thread-30 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:07:25,835 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:07:33,581 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:07:43,539 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:07:48,538 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:07:53,539 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:07:55,831 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:07:55,834 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:08:03,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:08:13,538 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:08:18,538 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:08:23,537 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:08:25,845 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:08:25,846 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:08:32,238 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:08:32,283 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:08:32,555 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:08:32,778 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:08:37,437 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:08:40,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:08:41,690 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:08:41,691 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:08:41,691 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:853510 +03 二月 2026 | 06:08:42,075 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:08:43,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:853510 +03 二月 2026 | 06:08:43,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:08:44,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:08:44,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:08:44,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:08:44,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:08:44,638 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:08:44,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:08:44,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:08:44,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:08:44,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:08:44,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:08:44,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:08:45,266 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7195541a +03 二月 2026 | 06:08:46,070 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:08:46,070 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:08:46,070 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:08:46,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:08:46,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:08:46,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:08:49,687 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:08:49,703 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:08:49,728 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:08:49,892 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:08:52,639 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:125 +03 二月 2026 | 06:08:55,966 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:853510 +03 二月 2026 | 06:08:56,009 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:08:56,224 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:08:56,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:08:56,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:08:56,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:08:56,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:08:56,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:08:56,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:08:56,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:08:56,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:08:56,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:08:57,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:08:57,402 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5ae4e92a +03 二月 2026 | 06:08:58,204 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:08:58,205 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:08:58,205 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:08:58,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:08:58,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:08:58,442 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:08:59,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:09:00,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:09:00,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:09:00,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:917409 +03 二月 2026 | 06:09:00,491 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:09:02,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:917409 +03 二月 2026 | 06:09:02,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:09:02,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:09:02,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:09:02,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:09:02,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:09:03,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:09:03,202 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:09:03,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:09:03,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:09:03,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:09:03,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:09:03,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:09:03,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5ae4e92a +03 二月 2026 | 06:09:04,481 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:09:04,481 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:09:04,481 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:09:04,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:09:04,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:09:04,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:09:08,102 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,102 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,102 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,103 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,103 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,103 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,103 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,103 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,103 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,103 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,103 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,103 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,104 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:08,118 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:09:08,239 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:09:12,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:12,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:17,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:17,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:22,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:22,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:23,015 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:09:23,017 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:09:23,017 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:917409 +03 二月 2026 | 06:09:23,545 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:09:25,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:917409 +03 二月 2026 | 06:09:25,169 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:09:25,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:09:25,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:09:25,474 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:09:25,474 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:09:25,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:09:25,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:09:25,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:09:25,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:09:25,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:09:25,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:09:26,093 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:09:26,317 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5ae4e92a +03 二月 2026 | 06:09:26,988 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:09:26,988 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:09:26,988 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:09:27,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:09:27,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:09:27,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:09:27,503 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=917409, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:09:30,553 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:30,553 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:30,560 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:09:30,832 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:09:32,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:32,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:35,282 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.249, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eogVxE1nPJ2bkxic10ZIltDWk4V2a789ccB0a4pGxicdO11pMOP7oUA5Dibpdib3p0vWMibp34xpAicXQmg/132, entrust=false, nick=敬你是条狗, seat=2, ready=0, hp_info={cur_hp=4309000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=177475} +03 二月 2026 | 06:09:37,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:37,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:42,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:42,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:42,881 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:09:42,881 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:09:42,881 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:917409 +03 二月 2026 | 06:09:43,294 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:09:44,943 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:917409 +03 二月 2026 | 06:09:44,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:09:45,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:09:45,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:09:45,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:09:45,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:09:45,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:09:45,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:09:45,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:09:45,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:09:45,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:09:45,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:09:45,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:09:46,135 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5ae4e92a +03 二月 2026 | 06:09:46,801 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:09:46,801 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:09:46,802 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:09:46,839 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:09:46,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:09:47,029 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:09:47,321 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=917409, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:09:50,370 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:09:50,371 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:50,371 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:50,632 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:09:52,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:52,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:57,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:09:57,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:02,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:02,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:03,022 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:10:03,023 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:10:03,023 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:917409 +03 二月 2026 | 06:10:03,409 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:10:04,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:917409 +03 二月 2026 | 06:10:05,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:10:05,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:10:05,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:10:05,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:10:05,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:10:05,643 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:10:05,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:10:05,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:10:05,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:10:05,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:10:05,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:10:05,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:10:06,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5ae4e92a +03 二月 2026 | 06:10:06,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:10:06,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:10:06,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:10:06,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:10:06,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:10:07,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:10:07,342 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=917409, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:10:10,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:10,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:10,392 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:10:10,656 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:10:12,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:12,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:17,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:17,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:22,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:22,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:23,060 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:10:23,060 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:10:23,060 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:917409 +03 二月 2026 | 06:10:23,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:10:25,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:917409 +03 二月 2026 | 06:10:25,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:10:25,485 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:10:25,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:10:25,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:10:25,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:10:25,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:10:26,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:10:26,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:10:26,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:10:26,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:10:26,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:10:26,219 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:10:26,473 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5ae4e92a +03 二月 2026 | 06:10:27,164 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:10:27,164 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:10:27,164 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:10:27,201 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:10:27,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:10:27,398 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:10:27,697 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=917409, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:10:30,747 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:30,747 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:30,750 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:10:31,021 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:10:32,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:32,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:37,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:37,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:42,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:42,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:43,033 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:10:43,033 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:10:43,033 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:917409 +03 二月 2026 | 06:10:43,420 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:10:45,000 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:917409 +03 二月 2026 | 06:10:45,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:10:45,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:10:45,333 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:10:45,333 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:10:45,333 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:10:45,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:10:45,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:10:45,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:10:45,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:10:45,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:10:45,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:10:45,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:10:46,167 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5ae4e92a +03 二月 2026 | 06:10:46,832 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:10:46,832 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:10:46,832 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:10:46,869 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:10:46,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:10:47,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:10:47,332 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=917409, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:10:50,382 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:50,382 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:50,391 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:10:50,623 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:10:52,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:10:52,554 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:11:00,266 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:11:00,310 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:11:00,607 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:11:00,829 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:11:05,321 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:11:08,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:917409 +03 二月 2026 | 06:11:08,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 06:11:09,010 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 06:11:09,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:11:09,178 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:11:09,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:11:10,819 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:11:10,819 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:11:10,819 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:954477 +03 二月 2026 | 06:11:11,144 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:11:12,774 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:954477 +03 二月 2026 | 06:11:12,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:12,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:13,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:11:13,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:11:16,515 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:11:16,549 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:11:19,092 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:126 +03 二月 2026 | 06:11:21,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:954477 +03 二月 2026 | 06:11:21,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:22,071 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:22,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:11:22,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:11:22,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:11:22,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:11:22,697 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:11:22,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:11:22,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:11:22,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:11:22,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:11:22,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:11:23,143 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15fb5c8b +03 二月 2026 | 06:11:23,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:11:23,875 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:11:23,875 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:11:23,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:11:23,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:11:24,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:11:24,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:11:25,599 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:11:25,599 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:11:25,599 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:295736 +03 二月 2026 | 06:11:25,940 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:11:27,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295736 +03 二月 2026 | 06:11:27,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:27,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:27,928 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:11:27,929 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:11:27,929 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:11:28,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:11:28,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:11:28,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:11:28,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:11:28,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:11:28,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:11:28,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:11:28,870 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15fb5c8b +03 二月 2026 | 06:11:29,596 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:11:29,596 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:11:29,597 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:11:29,643 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:11:29,691 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:11:29,858 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:11:33,362 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:11:33,362 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:11:36,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295736 +03 二月 2026 | 06:11:36,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:11:36,526 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:11:36,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:11:36,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:11:36,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:11:37,041 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:11:37,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:11:37,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:11:37,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:11:37,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:11:37,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:11:37,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:11:37,608 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5930bd3d +03 二月 2026 | 06:11:38,340 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:11:38,341 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:11:38,341 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:11:38,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:11:38,436 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:11:38,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:11:39,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:11:40,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:11:40,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:11:40,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:294983 +03 二月 2026 | 06:11:40,443 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:11:42,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:294983 +03 二月 2026 | 06:11:42,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:42,362 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:42,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:11:42,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:11:42,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:11:42,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:11:42,985 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:11:43,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:11:43,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:11:43,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:11:43,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:11:43,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:11:43,428 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5930bd3d +03 二月 2026 | 06:11:44,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:11:44,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:11:44,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:11:44,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:11:44,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:11:44,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:11:47,814 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:11:47,934 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:11:47,934 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:11:51,129 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295736 +03 二月 2026 | 06:11:51,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:11:51,362 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:11:51,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:11:51,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:11:51,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:11:51,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:11:51,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:11:52,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:11:52,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:11:52,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:11:52,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:11:52,183 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:11:52,423 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15fb5c8b +03 二月 2026 | 06:11:53,146 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:11:53,146 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:11:53,146 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:11:53,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:11:53,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:11:53,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:11:54,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:11:54,886 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:11:54,886 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:11:54,886 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:965679 +03 二月 2026 | 06:11:55,240 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:11:56,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:965679 +03 二月 2026 | 06:11:56,995 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:57,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:11:57,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:11:57,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:12:00,729 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:00,847 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:00,848 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:04,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:294983 +03 二月 2026 | 06:12:04,377 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:12:04,580 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:12:04,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:12:04,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:12:04,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:12:05,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:12:05,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:12:05,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:12:05,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:12:05,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:12:05,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:12:05,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:12:05,652 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5930bd3d +03 二月 2026 | 06:12:06,379 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:12:06,379 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:12:06,379 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:12:06,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:12:06,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:12:06,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:12:07,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:12:08,150 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:12:08,150 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:12:08,150 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:426963 +03 二月 2026 | 06:12:08,534 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:12:10,293 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:426963 +03 二月 2026 | 06:12:10,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:12:10,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:12:10,659 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:12:10,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:12:14,090 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:14,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:14,222 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:17,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:294983 +03 二月 2026 | 06:12:17,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:12:17,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:12:17,956 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:12:17,956 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:12:17,956 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:12:18,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:12:18,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:12:18,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:12:18,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:12:18,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:12:18,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:12:18,663 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:12:18,903 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15fb5c8b +03 二月 2026 | 06:12:19,628 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:12:19,629 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:12:19,629 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:12:19,675 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:12:19,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:12:19,887 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:12:20,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:12:21,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:12:21,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:12:21,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:424418 +03 二月 2026 | 06:12:21,675 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:12:23,382 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:424418 +03 二月 2026 | 06:12:23,418 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:12:23,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:12:23,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:12:23,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:12:23,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:12:24,109 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:12:24,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:12:24,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:12:24,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:12:24,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:12:24,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:12:24,427 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:12:24,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15fb5c8b +03 二月 2026 | 06:12:25,391 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:12:25,391 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:12:25,391 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:12:25,438 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:12:25,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:12:25,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:12:29,014 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:29,120 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:29,120 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:32,796 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:294983 +03 二月 2026 | 06:12:32,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:12:33,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:12:33,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:12:33,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:12:33,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:12:33,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:12:33,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:12:33,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:12:33,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:12:33,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:12:33,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:12:33,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:12:34,080 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5930bd3d +03 二月 2026 | 06:12:34,861 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:12:34,861 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:12:34,861 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:12:34,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:12:34,942 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:12:35,093 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:12:35,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:12:36,519 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:12:36,519 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:12:36,519 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:617511 +03 二月 2026 | 06:12:36,861 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:12:38,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:617511 +03 二月 2026 | 06:12:38,598 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:12:38,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:12:38,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:12:38,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:12:42,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:42,427 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:42,427 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:46,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:424418 +03 二月 2026 | 06:12:46,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:12:46,828 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:12:46,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:12:46,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:12:46,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:12:47,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:12:47,438 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:12:47,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:12:47,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:12:47,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:12:47,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:12:47,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:12:47,896 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15fb5c8b +03 二月 2026 | 06:12:48,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:12:48,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:12:48,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:12:48,724 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:12:48,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:12:48,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:12:49,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:12:50,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:12:50,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:12:50,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:129926 +03 二月 2026 | 06:12:50,747 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:12:52,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:129926 +03 二月 2026 | 06:12:52,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:12:52,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:12:52,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:12:52,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:12:56,252 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:56,372 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:12:56,372 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:13:00,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295736 +03 二月 2026 | 06:13:00,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:13:01,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:13:01,293 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:13:01,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:13:01,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:13:01,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:13:01,773 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:13:01,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:13:01,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:13:01,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:13:01,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:13:01,995 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:13:02,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5930bd3d +03 二月 2026 | 06:13:03,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:13:03,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:13:03,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:13:03,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:13:03,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:13:03,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:13:04,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:13:04,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:13:04,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:13:04,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:666796 +03 二月 2026 | 06:13:05,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:13:06,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:666796 +03 二月 2026 | 06:13:06,882 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:13:07,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:13:07,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:13:07,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:13:07,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:13:07,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:13:07,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:13:07,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:13:07,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:13:07,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:13:07,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:13:07,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:13:08,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5930bd3d +03 二月 2026 | 06:13:08,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:13:08,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:13:08,961 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:13:09,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:13:09,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:13:09,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:13:12,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:13:12,707 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:13:12,707 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:13:17,113 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:666796 +03 二月 2026 | 06:13:17,149 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:13:17,335 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:13:17,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:13:17,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:13:17,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:13:17,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:13:17,942 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:13:17,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:13:17,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:13:17,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:13:17,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:13:18,133 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:13:18,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@15fb5c8b +03 二月 2026 | 06:13:23,914 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:13:23,958 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:13:24,236 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:13:24,474 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:13:29,140 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:13:33,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:666796 +03 二月 2026 | 06:13:33,863 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:13:34,059 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:13:34,163 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:13:34,163 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:13:34,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:13:34,591 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:13:34,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:13:34,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:13:34,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:13:34,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:13:34,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:13:34,885 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:13:35,090 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@48b75a19 +03 二月 2026 | 06:13:35,708 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:13:35,708 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:13:35,708 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:13:35,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:13:35,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:13:35,929 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:13:36,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:13:37,375 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:13:37,375 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:13:37,375 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:173624 +03 二月 2026 | 06:13:37,698 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:13:39,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:173624 +03 二月 2026 | 06:13:39,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:13:39,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:13:39,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:13:39,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:13:42,936 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:13:42,957 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:13:42,974 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:13:43,159 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:13:46,043 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:127 +03 二月 2026 | 06:13:51,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:294983 +03 二月 2026 | 06:13:51,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:13:51,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:13:51,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:13:51,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:13:51,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:13:52,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:13:52,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:13:52,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:13:52,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:13:52,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:13:52,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:13:52,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:13:52,632 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3338640d +03 二月 2026 | 06:13:53,246 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:13:53,246 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:13:53,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:13:53,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:13:53,322 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:13:53,481 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:13:54,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:13:54,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:13:54,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:13:54,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:475651 +03 二月 2026 | 06:13:55,226 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:13:56,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:475651 +03 二月 2026 | 06:13:56,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:13:57,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:13:57,126 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:13:57,126 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:13:57,126 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:13:57,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:13:57,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:13:57,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:13:57,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:13:57,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:13:57,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:13:57,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:13:57,951 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3338640d +03 二月 2026 | 06:13:58,566 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:13:58,566 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:13:58,566 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:13:58,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:13:58,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:13:58,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:14:02,142 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,142 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,143 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:02,161 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:14:02,284 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:14:04,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:04,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:09,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:09,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:14,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:14,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:18,949 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:295736 +03 二月 2026 | 06:14:18,985 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:14:19,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:14:19,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:14:19,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:14:19,275 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:14:19,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:14:19,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:14:19,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:14:19,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:14:19,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:14:19,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:14:19,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:14:20,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3338640d +03 二月 2026 | 06:14:20,696 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:14:20,696 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:14:20,696 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:14:20,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:14:20,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:14:20,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:14:21,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:14:22,226 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:14:22,226 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:14:22,226 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:562456 +03 二月 2026 | 06:14:22,540 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:14:24,019 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:562456 +03 二月 2026 | 06:14:24,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:14:24,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:14:24,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:14:24,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:14:25,701 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:14:25,709 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:14:27,741 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:14:27,742 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:14:34,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:34,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:39,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:39,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:44,312 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:666796 +03 二月 2026 | 06:14:44,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:14:44,538 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:14:44,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:14:44,677 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:14:45,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:14:45,704 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:14:45,707 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:14:45,714 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:14:45,714 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:14:45,981 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:14:45,981 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:14:45,981 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:489910 +03 二月 2026 | 06:14:46,311 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:14:47,840 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:489910 +03 二月 2026 | 06:14:47,879 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:14:48,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:14:48,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:14:48,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:14:51,581 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:14:51,592 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:14:59,235 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:14:59,235 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:15:04,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:15:04,236 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:16:15,323 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:16:15,371 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:16:15,653 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:16:15,878 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:16:20,646 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:16:26,686 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:294983 +03 二月 2026 | 06:16:26,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:16:26,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:16:27,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:16:27,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:16:27,839 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:16:28,651 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:16:28,651 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:16:28,651 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:636456 +03 二月 2026 | 06:16:33,730 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:16:33,778 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:16:34,050 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:16:34,286 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:16:38,753 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:16:45,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:294983 +03 二月 2026 | 06:16:45,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:16:45,423 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:16:45,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:16:45,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:16:45,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:16:46,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:16:46,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:16:46,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:16:46,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:16:46,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:16:46,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:16:46,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:16:46,602 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@e9d8fc5 +03 二月 2026 | 06:16:47,394 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:16:47,394 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:16:47,395 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:16:47,438 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:16:47,481 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:16:47,658 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:16:48,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:16:49,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:16:49,259 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:16:49,259 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:664922 +03 二月 2026 | 06:16:49,644 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:16:51,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:664922 +03 二月 2026 | 06:16:51,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:16:51,740 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:16:51,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:16:51,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:16:51,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:16:52,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:16:52,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:16:52,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:16:52,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:16:52,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:16:52,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:16:52,524 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:16:52,786 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@e9d8fc5 +03 二月 2026 | 06:16:56,780 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:16:56,826 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:16:57,071 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:16:57,293 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:17:01,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:17:07,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:965679 +03 二月 2026 | 06:17:07,062 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:17:07,298 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:17:07,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:17:07,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:17:07,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:17:07,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:17:07,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:17:08,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:17:08,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:17:08,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:17:08,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:17:08,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:17:08,389 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5826b479 +03 二月 2026 | 06:17:09,006 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:17:09,006 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:17:09,006 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:17:09,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:17:09,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:17:09,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:17:09,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:17:10,836 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:17:10,836 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:17:10,837 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:478359 +03 二月 2026 | 06:17:11,179 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:17:12,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:17:12,825 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:17:13,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:17:13,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:17:13,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:17:13,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:17:13,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:17:13,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:17:13,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:17:13,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:17:13,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:17:13,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:17:13,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:17:13,989 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5826b479 +03 二月 2026 | 06:17:14,606 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:17:14,606 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:17:14,606 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:17:14,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:17:14,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:17:14,879 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:17:18,241 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:17:18,264 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:17:18,281 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:17:18,466 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:17:20,986 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:128 +03 二月 2026 | 06:17:26,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:17:26,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:17:26,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:17:26,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:17:26,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:17:26,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:17:27,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:17:27,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:17:27,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:17:27,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:17:27,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:17:27,314 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:17:27,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:17:27,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:17:28,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:17:28,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:17:28,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:17:28,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:17:28,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:17:28,558 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:17:29,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:17:29,994 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:17:29,994 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:17:29,994 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:262519 +03 二月 2026 | 06:17:30,335 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:17:31,899 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:262519 +03 二月 2026 | 06:17:31,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:17:32,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:17:32,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:17:32,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:17:32,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:17:32,586 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:17:32,691 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:17:32,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:17:32,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:17:32,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:17:32,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:17:32,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:17:33,103 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:17:33,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:17:33,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:17:33,722 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:17:33,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:17:33,817 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:17:33,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:17:37,357 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,357 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,358 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,358 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,358 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,358 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,358 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,359 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,359 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,359 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,359 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,360 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,360 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,360 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,360 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:37,364 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:17:37,503 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:17:42,072 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:42,072 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:47,071 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:47,071 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:52,071 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:52,071 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:17:57,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:17:57,964 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:17:58,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:17:58,267 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:17:58,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:17:58,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:17:58,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:17:58,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:17:58,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:17:58,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:17:58,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:17:58,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:17:58,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:17:59,128 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:17:59,740 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:17:59,740 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:17:59,740 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:17:59,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:17:59,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:18:00,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:18:00,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:18:01,522 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:18:01,522 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:18:01,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:652448 +03 二月 2026 | 06:18:01,875 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:18:03,465 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:652448 +03 二月 2026 | 06:18:03,508 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:18:03,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:18:03,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:18:03,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:18:03,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:18:04,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:18:04,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:18:04,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:18:04,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:18:04,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:18:04,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:18:04,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:18:04,750 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:18:05,363 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:18:05,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:18:05,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:18:05,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:18:05,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:18:05,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:18:05,759 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:18:05,763 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:18:14,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:18:14,683 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:18:14,881 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:18:14,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:18:14,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:18:14,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:18:15,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:18:15,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:18:15,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:18:15,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:18:15,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:18:15,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:18:15,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:18:15,839 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:18:16,455 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:18:16,455 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:18:16,455 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:18:16,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:18:16,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:18:16,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:18:17,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:18:18,146 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:18:18,146 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:18:18,146 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:701546 +03 二月 2026 | 06:18:18,479 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:18:20,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:701546 +03 二月 2026 | 06:18:20,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:18:20,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:18:20,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:18:20,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:18:20,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:18:20,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:18:20,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:18:20,874 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:18:20,874 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:18:20,874 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:18:20,874 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:18:21,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:18:21,241 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:18:21,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:18:21,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:18:21,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:18:21,900 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:18:21,949 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:18:22,119 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:18:25,518 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:18:25,518 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:18:31,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:18:31,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:18:32,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:18:32,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:18:32,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:18:32,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:18:32,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:18:32,677 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:18:32,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:18:32,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:18:32,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:18:32,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:18:32,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:18:33,096 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:18:33,709 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:18:33,709 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:18:33,709 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:18:33,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:18:33,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:18:33,986 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:18:34,696 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:18:35,431 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:18:35,432 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:18:35,432 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:286194 +03 二月 2026 | 06:18:35,793 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:18:37,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:286194 +03 二月 2026 | 06:18:37,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:18:37,685 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:18:37,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:18:37,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:18:37,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:18:38,128 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:18:38,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:18:38,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:18:38,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:18:38,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:18:38,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:18:38,439 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:18:38,645 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:18:39,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:18:39,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:18:39,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:18:39,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:18:39,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:18:39,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:42,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:18:45,773 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:18:45,774 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:18:45,777 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:18:45,777 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:18:52,108 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:18:52,119 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:19:04,141 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:19:04,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:19:04,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:19:04,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:19:04,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:19:04,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:19:04,904 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:19:05,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:19:05,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:19:05,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:19:05,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:19:05,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:19:05,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:19:05,424 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:19:06,041 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:19:06,041 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:19:06,052 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:19:06,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:19:06,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:19:06,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:19:07,074 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:19:07,856 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:19:07,856 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:19:07,856 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:380258 +03 二月 2026 | 06:19:08,241 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:19:09,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:380258 +03 二月 2026 | 06:19:09,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:19:10,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:19:10,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:19:10,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:19:10,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:19:10,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:19:10,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:19:10,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:19:10,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:19:10,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:19:10,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:19:10,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:19:11,134 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:19:11,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:19:11,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:19:11,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:19:11,796 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:19:11,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:19:12,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:19:15,780 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:19:15,784 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:19:15,785 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:19:15,785 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:19:22,963 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:19:23,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:19:23,233 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:19:23,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:19:23,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:19:23,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:19:23,677 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:19:23,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:19:23,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:19:23,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:19:23,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:19:23,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:19:23,997 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:19:24,201 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:19:24,814 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:19:24,814 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:19:24,814 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:19:24,861 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:19:24,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:19:25,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:19:25,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:19:26,595 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:19:26,595 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:19:26,595 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:447574 +03 二月 2026 | 06:19:26,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:19:28,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:447574 +03 二月 2026 | 06:19:28,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:19:28,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:19:29,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:19:29,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:19:29,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:19:29,399 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:19:29,499 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:19:29,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:19:29,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:19:29,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:19:29,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:19:29,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:19:29,922 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:19:30,538 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:19:30,538 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:19:30,538 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:19:30,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:19:30,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:19:30,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:19:34,241 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:19:34,251 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:19:41,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:19:41,293 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:19:41,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:19:41,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:19:41,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:19:41,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:19:41,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:19:42,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:19:42,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:19:42,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:19:42,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:19:42,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:19:42,261 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:19:42,466 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:19:43,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:19:43,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:19:43,085 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:19:43,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:19:43,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:19:43,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:19:44,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:19:44,818 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:19:44,818 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:19:44,818 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:811238 +03 二月 2026 | 06:19:45,174 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:19:46,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:811238 +03 二月 2026 | 06:19:46,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:19:47,048 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:19:47,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:19:47,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:19:47,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:19:47,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:19:47,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:19:47,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:19:47,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:19:47,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:19:47,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:19:47,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:19:48,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:19:48,635 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:19:48,635 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:19:48,635 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:19:48,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:19:48,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:19:48,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:52,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:19:55,793 | ERROR | Thread-56 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:19:55,795 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:19:55,798 | ERROR | Thread-57 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:19:55,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:20:02,110 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:20:02,120 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:20:14,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:20:14,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:20:14,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:20:14,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:20:14,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:20:14,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:20:15,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:20:15,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:20:15,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:20:15,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:20:15,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:20:15,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:20:15,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:20:15,564 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:20:16,172 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:20:16,172 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:20:16,172 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:20:16,219 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:20:16,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:20:16,444 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:20:17,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:20:17,891 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:20:17,891 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:20:17,891 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:478385 +03 二月 2026 | 06:20:18,243 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:20:19,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478385 +03 二月 2026 | 06:20:19,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:20:20,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:20:20,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:20:20,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:20:20,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:20:20,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:20:20,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:20:20,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:20:20,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:20:20,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:20:20,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:20:20,825 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:20:21,029 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:20:21,642 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:20:21,642 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:20:21,642 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:20:21,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:20:21,736 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:20:21,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:20:25,802 | ERROR | Thread-66 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:20:25,804 | ERROR | Thread-65 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:20:25,810 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:20:25,810 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:20:31,990 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:20:32,025 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:20:32,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:20:32,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:20:32,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:20:32,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:20:32,666 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:20:32,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:20:32,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:20:32,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:20:32,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:20:32,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:20:32,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:20:33,175 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:20:33,851 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:20:33,851 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:20:33,851 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:20:33,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:20:33,945 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:20:34,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:20:34,799 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:20:35,499 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:20:35,499 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:20:35,499 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:587518 +03 二月 2026 | 06:20:35,807 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:20:37,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:587518 +03 二月 2026 | 06:20:37,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:20:37,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:20:37,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:20:37,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:20:37,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:20:37,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:20:38,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:20:38,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:20:38,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:20:38,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:20:38,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:20:38,263 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:20:38,466 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:20:39,077 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:20:39,077 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:20:39,077 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:20:39,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:20:39,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:20:39,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:20:42,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:20:42,746 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:20:49,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:478359 +03 二月 2026 | 06:20:49,291 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:20:49,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:20:49,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:20:49,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:20:49,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:20:49,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:20:50,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:20:50,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:20:50,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:20:50,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:20:50,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:20:50,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:20:50,430 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:20:51,049 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:20:51,049 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:20:51,049 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:20:51,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:20:51,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:20:51,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:20:51,985 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:20:52,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:20:52,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:20:52,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:232919 +03 二月 2026 | 06:20:52,980 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:20:54,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:232919 +03 二月 2026 | 06:20:54,495 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:20:54,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:20:54,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:20:54,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:20:54,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:20:55,129 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:20:55,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:20:55,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:20:55,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:20:55,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:20:55,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:20:55,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:20:55,635 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:20:56,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:20:56,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:20:56,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:20:56,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:20:56,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:20:56,511 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,870 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,871 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,871 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:20:59,871 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:21:02,073 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:21:02,073 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:21:05,817 | ERROR | Thread-73 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:21:05,817 | ERROR | Thread-74 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:21:05,828 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:21:05,828 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:21:12,115 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:21:12,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:21:24,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:262519 +03 二月 2026 | 06:21:24,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:21:24,520 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:21:24,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:21:24,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:21:24,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:21:24,966 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:21:25,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:21:25,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:21:25,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:21:25,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:21:25,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:21:25,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:21:25,469 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6084af2 +03 二月 2026 | 06:21:26,081 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:21:26,081 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:21:26,081 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:21:26,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:21:26,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:21:26,340 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:21:27,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:21:27,727 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:21:27,727 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:21:27,727 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:257173 +03 二月 2026 | 06:21:28,030 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:21:29,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:257173 +03 二月 2026 | 06:21:29,588 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:21:29,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:21:29,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:21:29,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:21:35,830 | ERROR | Thread-82 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:21:35,831 | ERROR | Thread-83 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:21:35,835 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:21:35,835 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:21:41,212 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:262519 +03 二月 2026 | 06:21:41,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:21:41,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:21:41,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:21:41,598 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:21:42,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:21:42,993 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:21:42,993 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:21:42,993 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:186207 +03 二月 2026 | 06:21:43,333 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:21:44,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:186207 +03 二月 2026 | 06:21:44,977 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:21:45,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:21:45,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:21:45,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:21:51,131 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:21:51,174 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:21:51,481 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:21:51,709 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:21:55,820 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:10 +03 二月 2026 | 06:21:55,959 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:22:05,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:262519 +03 二月 2026 | 06:22:05,052 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:22:05,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:22:05,378 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:22:05,418 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:22:06,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:22:07,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:22:07,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:22:07,121 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:300204 +03 二月 2026 | 06:22:07,503 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:22:09,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:300204 +03 二月 2026 | 06:22:09,279 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:22:09,465 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:22:09,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:22:09,642 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:22:13,009 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:22:13,053 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:22:15,604 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:129 +03 二月 2026 | 06:22:15,838 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 06:22:15,843 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 06:22:24,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:262519 +03 二月 2026 | 06:22:24,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:22:24,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:22:24,499 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:22:24,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:22:25,214 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:22:25,985 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:22:25,985 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:22:25,985 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:851967 +03 二月 2026 | 06:22:26,368 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:22:28,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851967 +03 二月 2026 | 06:22:28,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:22:28,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:22:28,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:22:28,506 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:22:31,918 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:22:32,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:40,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:262519 +03 二月 2026 | 06:22:40,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:22:40,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:22:41,031 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:22:41,074 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:22:41,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:22:42,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:22:42,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:22:42,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:184960 +03 二月 2026 | 06:22:42,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:22:44,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:184960 +03 二月 2026 | 06:22:44,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:22:44,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:22:45,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:22:45,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:22:48,454 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:22:48,583 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:22:49,022 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,022 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,022 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,022 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,023 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,023 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,023 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,024 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:49,025 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:51,481 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:51,481 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:56,482 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:22:56,482 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:24:30,834 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:24:30,880 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:24:31,146 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:24:31,388 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:24:35,640 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:11 +03 二月 2026 | 06:24:35,788 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:24:38,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:24:39,488 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:24:39,488 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:24:39,488 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:383751 +03 二月 2026 | 06:24:39,805 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:24:41,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:383751 +03 二月 2026 | 06:24:41,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:24:41,567 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:24:41,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:24:41,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:24:41,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:24:42,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:24:42,113 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:24:42,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:24:42,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:24:42,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:24:42,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:24:42,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:24:42,517 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@220eff69 +03 二月 2026 | 06:24:43,189 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:24:43,189 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:24:43,189 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:24:43,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:24:43,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:24:43,423 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:24:46,765 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:24:46,790 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:24:46,800 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:24:46,995 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:24:49,320 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:130 +03 二月 2026 | 06:24:52,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:383751 +03 二月 2026 | 06:24:52,358 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:24:52,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:24:52,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:24:52,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:24:52,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:24:52,985 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:24:53,093 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:24:53,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:24:53,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:24:53,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:24:53,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:24:53,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:24:53,501 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2722d875 +03 二月 2026 | 06:24:54,299 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:24:54,300 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:24:54,300 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:24:54,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:24:54,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:24:54,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:24:55,181 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:24:55,873 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:24:55,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:24:55,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:360796 +03 二月 2026 | 06:24:56,197 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:24:57,737 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:360796 +03 二月 2026 | 06:24:57,774 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:24:57,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:24:58,057 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:24:58,057 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:24:58,057 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:24:58,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:24:58,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:24:58,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:24:58,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:24:58,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:24:58,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:24:58,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:24:58,903 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2722d875 +03 二月 2026 | 06:24:59,596 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:24:59,597 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:24:59,597 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:24:59,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:24:59,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:24:59,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:25:03,181 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,181 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:03,197 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:25:03,315 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:25:06,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:06,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:11,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:11,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:16,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:16,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:16,545 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:25:16,545 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:25:16,545 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:360796 +03 二月 2026 | 06:25:17,114 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:25:18,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:360796 +03 二月 2026 | 06:25:18,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:25:18,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:25:19,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:25:19,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:25:19,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:25:19,416 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:25:19,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:25:19,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:25:19,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:25:19,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:25:19,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:25:19,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:25:19,918 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2722d875 +03 二月 2026 | 06:25:20,587 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:25:20,587 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:25:20,587 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:25:20,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:25:20,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:25:20,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:25:21,139 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=360796, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:25:24,175 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:24,175 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:24,195 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:25:24,438 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:25:26,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:26,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:31,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:31,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:36,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:36,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:36,623 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:25:36,623 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:25:36,623 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:360796 +03 二月 2026 | 06:25:37,026 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:25:38,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:360796 +03 二月 2026 | 06:25:38,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:25:38,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:25:38,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:25:38,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:25:38,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:25:39,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:25:39,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:25:39,376 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:25:39,376 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:25:39,376 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:25:39,376 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:25:39,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:25:39,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2722d875 +03 二月 2026 | 06:25:40,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:25:40,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:25:40,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:25:40,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:25:40,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:25:40,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:25:41,160 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=360796, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:25:44,196 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:44,196 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:44,221 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:25:44,479 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:25:46,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:46,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:51,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:51,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:56,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:56,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:25:56,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:25:56,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:25:56,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:360796 +03 二月 2026 | 06:25:56,957 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:25:58,562 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:360796 +03 二月 2026 | 06:25:58,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:25:58,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:25:58,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:25:58,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:25:58,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:25:59,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:25:59,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:25:59,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:25:59,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:25:59,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:25:59,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:25:59,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:25:59,692 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2722d875 +03 二月 2026 | 06:26:00,365 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:26:00,365 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:26:00,365 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:26:00,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:26:00,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:26:00,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:26:00,885 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=360796, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:26:03,921 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:03,921 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:03,944 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:26:04,173 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:26:06,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:06,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:11,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:11,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:16,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:16,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:16,596 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:26:16,596 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:26:16,596 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:360796 +03 二月 2026 | 06:26:17,029 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:26:18,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:360796 +03 二月 2026 | 06:26:18,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:26:18,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:26:18,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:26:18,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:26:18,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:26:19,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:26:19,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:26:19,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:26:19,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:26:19,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:26:19,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:26:19,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:26:19,790 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2722d875 +03 二月 2026 | 06:26:20,448 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:26:20,448 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:26:20,448 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:26:20,489 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:26:20,529 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:26:20,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:26:20,999 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=360796, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:26:24,036 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:24,036 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:24,054 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:26:24,312 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:26:26,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:26,145 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:31,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:31,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:36,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:36,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:36,594 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:26:36,594 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:26:36,594 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:360796 +03 二月 2026 | 06:26:37,044 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:26:38,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:360796 +03 二月 2026 | 06:26:38,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:26:38,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:26:39,029 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:26:39,029 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:26:39,029 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:26:39,355 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:26:39,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:26:39,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:26:39,496 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:26:39,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:26:39,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:26:39,644 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:26:39,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2722d875 +03 二月 2026 | 06:26:40,552 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:26:40,553 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:26:40,553 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:26:40,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:26:40,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:26:40,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:26:41,111 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=360796, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:26:44,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:44,149 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:44,159 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:26:44,398 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:26:46,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:46,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:51,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:51,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:56,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:56,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:26:56,534 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:26:56,534 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:26:56,534 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:360796 +03 二月 2026 | 06:26:56,955 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:26:58,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:360796 +03 二月 2026 | 06:26:58,599 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:26:58,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:26:58,879 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:26:58,879 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:26:58,879 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:26:59,201 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:26:59,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:26:59,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:26:59,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:26:59,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:26:59,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:26:59,482 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:26:59,704 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2722d875 +03 二月 2026 | 06:27:00,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:27:00,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:27:00,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:27:00,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:27:00,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:27:00,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:27:00,905 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=360796, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:27:03,940 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:27:03,940 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:27:03,957 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:27:04,227 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:27:06,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:27:06,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:27:12,455 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:27:12,501 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:27:12,763 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:27:12,997 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:27:17,351 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:12 +03 二月 2026 | 06:27:17,484 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:27:20,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:360796 +03 二月 2026 | 06:27:20,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 06:27:21,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 06:27:21,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:27:21,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:27:21,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:27:21,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:27:21,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:27:21,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:27:21,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:27:21,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:27:21,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:27:21,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:27:22,299 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5c79df62 +03 二月 2026 | 06:27:22,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:27:22,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:27:22,996 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:27:23,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:27:23,074 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:27:23,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:27:23,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:27:24,881 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:27:24,881 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:27:24,881 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:27:25,211 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:27:26,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:27:26,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:27:27,048 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:27:27,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:27:27,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:27:27,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:27:27,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:27:27,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:27:27,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:27:27,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:27:27,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:27:27,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:27:27,845 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:27:28,080 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5c79df62 +03 二月 2026 | 06:27:28,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:27:28,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:27:28,783 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:27:28,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:27:28,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:27:29,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:27:32,356 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:27:32,381 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:27:32,391 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:27:32,586 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:27:35,030 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:131 +03 二月 2026 | 06:27:38,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:27:38,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:27:38,251 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:27:38,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:27:38,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:27:38,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:27:38,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:27:38,849 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:27:38,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:27:38,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:27:38,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:27:38,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:27:39,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:27:39,290 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58285dc3 +03 二月 2026 | 06:27:39,994 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:27:39,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:27:39,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:27:40,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:27:40,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:27:40,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:27:40,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:27:41,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:27:41,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:27:41,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:566934 +03 二月 2026 | 06:27:42,023 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:27:43,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:566934 +03 二月 2026 | 06:27:43,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:27:43,796 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:27:43,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:27:43,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:27:43,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:27:44,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:27:44,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:27:44,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:27:44,423 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:27:44,423 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:27:44,423 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:27:44,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:27:44,823 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58285dc3 +03 二月 2026 | 06:27:45,522 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:27:45,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:27:45,523 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:27:45,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:27:45,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:27:45,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:27:49,109 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:27:49,316 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:27:49,317 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:27:49,630 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:27:50,001 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:27:50,001 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:27:50,002 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:566934 +03 二月 2026 | 06:27:50,519 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:27:52,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:566934 +03 二月 2026 | 06:27:52,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:27:52,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:27:52,576 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:27:52,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:27:52,899 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=566934, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:27:55,939 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:27:56,051 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:27:56,051 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:27:56,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:27:56,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:27:56,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:27:56,741 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:27:58,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:27:58,427 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:27:58,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:27:58,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:27:58,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:27:58,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:27:59,058 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:27:59,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:27:59,200 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:27:59,200 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:27:59,200 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:27:59,200 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:27:59,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:27:59,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58285dc3 +03 二月 2026 | 06:28:00,245 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:28:00,245 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:28:00,245 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:28:00,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:28:00,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:28:00,481 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:28:00,776 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:28:03,815 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:03,827 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:28:03,930 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:03,930 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:04,061 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:28:04,402 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:28:04,402 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:28:04,402 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:28:04,837 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:28:06,485 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:28:06,526 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:06,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:06,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:28:06,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:28:06,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:28:07,167 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:28:07,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:28:07,308 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:28:07,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:28:07,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:28:07,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:28:07,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:28:07,711 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5c79df62 +03 二月 2026 | 06:28:08,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:28:08,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:28:08,374 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:28:08,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:28:08,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:28:08,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:28:08,913 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:28:11,952 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:11,971 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:28:12,072 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:12,072 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:12,221 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:28:12,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:28:12,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:28:12,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:28:12,909 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:28:14,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:28:14,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:14,706 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:14,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:28:14,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:28:14,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:28:15,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:28:15,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:28:15,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:28:15,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:28:15,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:28:15,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:28:15,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:28:15,660 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58285dc3 +03 二月 2026 | 06:28:16,313 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:28:16,313 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:28:16,313 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:28:16,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:28:16,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:28:16,538 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:28:16,826 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:28:19,866 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:19,886 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:28:19,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:19,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:20,137 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:28:20,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:28:20,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:28:20,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:28:20,818 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:28:22,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:28:22,524 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:22,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:22,839 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:28:22,839 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:28:22,839 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:28:23,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:28:23,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:28:23,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:28:23,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:28:23,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:28:23,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:28:23,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:28:23,694 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5c79df62 +03 二月 2026 | 06:28:24,348 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:28:24,348 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:28:24,348 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:28:24,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:28:24,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:28:24,582 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:28:24,875 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:28:27,916 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:27,933 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:28:28,029 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:28,029 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:28,156 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:28:28,466 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:28:28,466 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:28:28,466 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:28:28,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:28:30,599 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:28:30,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:30,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:30,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:28:30,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:28:30,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:28:31,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:28:31,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:28:31,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:28:31,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:28:31,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:28:31,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:28:31,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:28:31,817 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58285dc3 +03 二月 2026 | 06:28:32,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:28:32,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:28:32,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:28:32,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:28:32,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:28:32,708 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:28:33,013 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:28:36,053 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:36,071 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:28:36,179 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:36,179 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:36,346 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:28:36,641 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:28:36,641 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:28:36,641 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:28:37,095 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:28:38,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:28:38,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:38,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:39,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:28:39,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:28:39,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:28:39,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:28:39,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:28:39,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:28:39,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:28:39,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:28:39,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:28:39,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:28:39,946 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5c79df62 +03 二月 2026 | 06:28:40,597 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:28:40,598 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:28:40,598 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:28:40,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:28:40,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:28:40,838 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:28:41,138 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:28:44,178 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:44,189 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:28:44,306 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:44,307 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:44,434 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:28:44,741 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:28:44,741 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:28:44,741 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:28:45,147 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:28:46,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:28:46,753 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:46,963 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:47,068 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:28:47,068 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:28:47,068 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:28:47,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:28:47,488 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:28:47,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:28:47,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:28:47,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:28:47,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:28:47,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:28:47,916 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58285dc3 +03 二月 2026 | 06:28:48,573 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:28:48,574 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:28:48,574 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:28:48,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:28:48,650 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:28:48,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:28:49,096 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:28:52,136 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:52,154 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:28:52,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:52,320 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:28:52,460 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:28:52,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:28:52,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:28:52,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:28:53,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:28:54,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:28:54,835 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:55,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:28:55,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:28:55,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:28:55,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:28:55,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:28:55,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:28:55,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:28:55,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:28:55,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:28:55,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:28:55,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:28:56,014 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5c79df62 +03 二月 2026 | 06:28:56,669 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:28:56,669 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:28:56,669 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:28:56,710 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:28:56,749 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:28:56,904 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:28:57,201 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:29:00,239 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:00,254 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:29:00,359 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:00,359 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:00,499 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:29:00,781 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:29:00,781 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:29:00,781 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:29:01,153 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:29:02,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:29:02,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:02,928 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:03,031 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:29:03,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:29:03,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:29:03,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:29:03,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:29:03,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:29:03,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:29:03,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:29:03,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:29:03,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:29:03,878 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58285dc3 +03 二月 2026 | 06:29:04,531 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:29:04,531 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:29:04,531 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:29:04,569 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:29:04,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:29:04,749 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:29:05,030 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:29:08,070 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:08,084 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:29:08,168 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:08,168 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:08,349 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:29:08,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:29:08,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:29:08,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:29:09,108 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:29:10,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:29:10,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:11,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:11,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:29:11,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:29:11,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:29:11,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:29:11,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:29:11,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:29:11,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:29:11,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:29:11,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:29:11,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:29:11,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5c79df62 +03 二月 2026 | 06:29:12,628 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:29:12,628 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:29:12,628 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:29:12,666 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:29:12,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:29:12,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:29:13,162 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:29:16,203 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:16,215 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:29:16,325 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:16,325 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:16,447 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:29:16,790 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:29:16,790 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:29:16,790 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:29:17,205 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:29:18,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:29:18,819 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:19,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:19,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:29:19,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:29:19,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:29:19,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:29:19,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:29:19,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:29:19,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:29:19,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:29:19,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:29:19,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:29:20,060 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@58285dc3 +03 二月 2026 | 06:29:20,719 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:29:20,719 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:29:20,719 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:29:20,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:29:20,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:29:20,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:29:21,299 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:29:24,341 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:24,358 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:29:24,454 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:24,454 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:24,621 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:29:24,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:29:24,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:29:24,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:29:25,331 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:29:26,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:29:26,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:27,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:27,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:29:27,314 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:29:27,314 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:29:27,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:29:27,742 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:29:27,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:29:27,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:29:27,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:29:27,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:29:27,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:29:28,171 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5c79df62 +03 二月 2026 | 06:29:28,823 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:29:28,823 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:29:28,823 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:29:28,863 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:29:28,900 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:29:29,057 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:29:29,354 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:29:35,036 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:29:35,077 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:29:35,310 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:29:35,527 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:29:40,057 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:13 +03 二月 2026 | 06:29:40,186 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:29:40,514 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:29:40,514 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:29:40,514 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:744662 +03 二月 2026 | 06:29:41,069 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:29:43,377 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:744662 +03 二月 2026 | 06:29:43,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:43,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:43,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:29:43,817 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:29:44,181 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=744662, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:29:47,225 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:29:47,234 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:29:47,271 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:29:47,569 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:29:49,903 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:132 +03 二月 2026 | 06:29:50,486 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:29:50,486 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:29:50,486 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:566934 +03 二月 2026 | 06:29:50,860 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:29:52,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:566934 +03 二月 2026 | 06:29:52,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:52,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:29:53,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:29:53,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:29:53,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:29:53,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:29:53,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:29:53,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:29:53,748 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:29:53,749 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:29:53,749 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:29:53,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:29:54,154 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1a838dd4 +03 二月 2026 | 06:29:54,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:29:54,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:29:54,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:29:54,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:29:54,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:29:55,152 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:29:55,499 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=566934, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:29:58,597 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:29:58,674 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:58,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:58,755 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:58,755 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:58,834 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:58,834 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:58,914 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:29:58,924 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:30:00,309 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:00,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:05,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:05,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:10,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:10,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:15,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:15,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:20,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:20,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:25,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:25,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:30,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:30,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:35,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:35,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:40,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:40,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:45,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:45,393 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:50,309 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:50,389 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:55,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:30:55,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:00,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:00,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:05,309 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:05,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:10,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:10,394 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:15,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:15,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:20,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:20,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:25,309 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:25,389 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:30,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:30,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:35,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:35,389 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:40,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:40,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:45,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:45,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:50,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:50,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:55,309 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:31:55,388 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:00,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:00,392 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:05,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:05,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:10,311 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:10,391 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:15,310 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:15,390 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:24,199 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 06:32:24,244 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 06:32:24,517 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 06:32:24,752 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:32:29,411 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:14 +03 二月 2026 | 06:32:29,535 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 06:32:32,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:32:33,501 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:32:33,501 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:32:33,501 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:32:33,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:32:35,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:32:35,696 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:32:35,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:32:36,037 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:32:36,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:32:36,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:32:36,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:32:36,508 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:32:36,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:32:36,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:32:36,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:32:36,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:32:36,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:32:36,954 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@316e740 +03 二月 2026 | 06:32:37,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:32:37,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:32:37,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:32:37,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:32:37,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:32:37,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:32:41,252 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 06:32:41,261 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:32:41,296 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 06:32:41,464 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:32:43,938 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:133 +03 二月 2026 | 06:32:47,105 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:32:47,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:32:47,346 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 06:32:47,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:32:47,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:32:47,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:32:47,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:32:47,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:32:47,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:32:47,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:32:47,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:32:47,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:32:48,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:32:48,375 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:32:49,106 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:32:49,106 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:32:49,106 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:32:49,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:32:49,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:32:49,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:32:50,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 06:32:51,717 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:32:51,717 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:32:51,718 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:405252 +03 二月 2026 | 06:32:52,086 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:32:53,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:405252 +03 二月 2026 | 06:32:53,697 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:32:53,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 06:32:54,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:32:54,019 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:32:54,019 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:32:54,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:32:54,481 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:32:54,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:32:54,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:32:54,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:32:54,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:32:54,677 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:32:54,917 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:32:55,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:32:55,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:32:55,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:32:55,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:32:55,706 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:32:55,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:32:59,202 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:32:59,304 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:59,304 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:32:59,421 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:32:59,708 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:32:59,709 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:32:59,709 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:405252 +03 二月 2026 | 06:33:00,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:33:02,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:405252 +03 二月 2026 | 06:33:02,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:02,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:02,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:33:02,525 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:33:02,828 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=405252, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:33:05,869 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:06,015 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:06,016 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:06,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:33:06,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:33:06,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:33:06,723 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:33:08,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:33:08,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:08,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:08,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:33:08,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:33:08,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:33:08,938 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:33:09,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:33:09,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:33:09,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:33:09,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:33:09,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:33:09,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:33:09,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:33:10,155 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:33:10,156 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:33:10,156 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:33:10,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:33:10,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:33:10,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:33:10,640 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:33:13,681 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:13,687 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:33:13,784 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:13,784 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:13,956 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:33:14,235 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:33:14,235 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:33:14,235 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:33:14,698 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:33:16,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:33:16,407 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:16,616 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:16,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:33:16,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:33:16,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:33:17,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:33:17,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:33:17,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:33:17,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:33:17,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:33:17,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:33:17,354 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:33:17,584 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@316e740 +03 二月 2026 | 06:33:18,269 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:33:18,270 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:33:18,270 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:33:18,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:33:18,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:33:18,495 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:33:18,791 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:33:21,833 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:21,849 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:33:21,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:21,961 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:22,077 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:33:22,394 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:33:22,394 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:33:22,394 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:33:22,785 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:33:24,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:33:24,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:24,576 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:24,686 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:33:24,686 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:33:24,686 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:33:25,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:33:25,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:33:25,153 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:33:25,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:33:25,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:33:25,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:33:25,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:33:25,539 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:33:26,224 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:33:26,224 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:33:26,224 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:33:26,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:33:26,291 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:33:26,427 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:33:26,706 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:33:29,750 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:29,764 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:33:29,853 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:29,853 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:30,002 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:33:30,298 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:33:30,298 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:33:30,298 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:33:30,728 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:33:32,338 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:33:32,377 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:32,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:32,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:33:32,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:33:32,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:33:33,009 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:33:33,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:33:33,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:33:33,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:33:33,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:33:33,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:33:33,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:33:33,547 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@316e740 +03 二月 2026 | 06:33:34,234 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:33:34,235 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:33:34,235 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:33:34,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:33:34,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:33:34,445 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:33:34,730 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:33:37,771 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:37,781 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:33:37,887 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:37,887 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:38,039 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:33:38,379 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:33:38,379 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:33:38,379 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:33:38,795 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:33:40,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:33:40,428 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:40,624 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:40,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:33:40,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:33:40,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:33:41,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:33:41,162 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:33:41,195 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:33:41,195 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:33:41,195 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:33:41,196 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:33:41,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:33:41,585 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:33:42,278 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:33:42,279 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:33:42,279 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:33:42,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:33:42,346 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:33:42,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:33:42,771 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:33:45,814 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:45,826 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:33:45,925 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:45,925 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:46,075 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:33:46,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:33:46,388 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:33:46,388 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:33:46,846 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:33:48,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:33:48,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:48,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:48,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:33:48,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:33:48,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:33:49,148 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:33:49,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:33:49,291 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:33:49,291 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:33:49,291 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:33:49,291 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:33:49,454 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:33:49,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@316e740 +03 二月 2026 | 06:33:50,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:33:50,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:33:50,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:33:50,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:33:50,436 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:33:50,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:33:50,881 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:33:53,921 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:53,928 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:33:54,050 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:54,050 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:33:54,174 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:33:54,508 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:33:54,508 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:33:54,508 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:33:54,938 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:33:56,540 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:33:56,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:56,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:33:56,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:33:56,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:33:56,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:33:57,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:33:57,314 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:33:57,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:33:57,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:33:57,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:33:57,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:33:57,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:33:57,738 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:33:58,424 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:33:58,424 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:33:58,424 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:33:58,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:33:58,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:33:58,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:33:58,922 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:34:01,963 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:01,970 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:34:02,082 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:02,083 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:02,225 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:34:02,505 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:34:02,505 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:34:02,505 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:34:03,004 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:34:04,696 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:34:04,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:34:04,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:34:05,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:34:05,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:34:05,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:34:05,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:34:05,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:34:05,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:34:05,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:34:05,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:34:05,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:34:05,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:34:05,936 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@316e740 +03 二月 2026 | 06:34:06,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:34:06,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:34:06,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:34:06,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:34:06,690 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:34:06,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:34:07,156 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:34:10,198 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:10,211 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:34:10,423 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:10,423 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:10,521 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:34:10,929 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:34:10,929 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:34:10,929 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:34:11,441 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:34:13,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:34:13,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:34:13,460 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 06:34:13,569 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:34:13,569 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:34:13,569 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:34:13,886 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:34:13,995 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:34:14,029 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:34:14,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:34:14,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:34:14,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:34:14,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:34:14,431 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:34:15,118 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:34:15,118 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:34:15,118 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:34:15,152 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:34:15,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:34:15,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:34:15,662 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:34:18,702 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:18,712 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:34:18,851 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:18,851 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,064 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:34:19,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,295 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,295 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,443 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,443 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,589 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,589 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,738 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,738 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:19,885 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:21,832 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1---------com.robotcm.taurus.client.MessageResponse@3422d67c +03 二月 2026 | 06:34:21,832 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1getKey---------{robortInfo}:132788 +03 二月 2026 | 06:34:21,832 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1key---------g{null}:play:null +03 二月 2026 | 06:34:21,832 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1aid---------132788 +03 二月 2026 | 06:34:24,518 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:24,666 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:29,518 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:29,792 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:34:29,792 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:34:29,792 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:34:30,191 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:34:31,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:34:31,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:34:31,975 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:34:32,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:34:32,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:34:32,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:34:32,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:34:32,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:34:32,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:34:32,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:34:32,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:34:32,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:34:32,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:34:32,925 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@316e740 +03 二月 2026 | 06:34:33,612 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:34:33,612 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:34:33,612 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:34:33,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:34:33,679 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:34:33,815 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:34:34,099 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:34:37,140 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:37,150 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:34:37,493 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:34:37,588 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:34:37,588 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:34:37,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:405252 +03 二月 2026 | 06:34:37,692 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 06:34:38,045 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:34:39,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:405252 +03 二月 2026 | 06:34:39,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:34:39,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:34:39,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:34:39,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:34:39,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:34:40,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:34:40,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:34:40,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:34:40,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:34:40,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:34:40,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:34:40,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:34:40,818 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:34:41,509 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:34:41,509 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:34:41,509 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:34:41,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:34:41,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:34:41,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:34:42,021 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=405252, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:34:45,062 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:45,075 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:34:45,188 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:45,189 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:34:45,189 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:45,384 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 06:34:45,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:34:45,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:34:45,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:405252 +03 二月 2026 | 06:34:45,991 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:34:47,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:405252 +03 二月 2026 | 06:34:47,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:34:47,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:34:47,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 06:34:47,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:34:48,190 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=405252, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:34:51,231 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:51,334 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:51,334 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:51,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:34:51,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:34:51,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:34:51,905 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:34:53,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:34:53,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:34:53,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:34:53,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:34:53,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:34:53,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:34:54,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:34:54,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:34:54,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:34:54,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:34:54,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:34:54,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:34:54,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:34:54,741 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:34:55,489 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:34:55,489 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:34:55,489 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:34:55,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:34:55,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:34:55,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:34:55,990 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:34:59,030 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:59,040 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:34:59,150 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:59,150 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:34:59,295 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:34:59,508 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 06:34:59,634 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:34:59,634 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:34:59,634 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:34:59,986 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:35:01,524 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:35:01,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:35:01,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:35:01,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:35:01,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:35:01,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:35:02,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:35:02,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:35:02,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:35:02,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:35:02,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:35:02,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:35:02,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:35:02,726 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@316e740 +03 二月 2026 | 06:35:03,417 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:35:03,417 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:35:03,417 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:35:03,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:35:03,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:35:03,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:35:03,924 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:35:06,966 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:06,968 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:35:07,085 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:07,085 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:07,182 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:35:07,390 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 06:35:07,459 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:35:07,459 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:35:07,459 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:35:07,819 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 06:35:09,368 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:35:09,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:35:09,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:35:09,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:35:09,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:35:09,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:35:10,041 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:35:10,149 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:35:10,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:35:10,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 06:35:10,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:35:10,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:35:10,345 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:35:10,573 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2e65d3b8 +03 二月 2026 | 06:35:11,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:35:11,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:35:11,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:35:11,291 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:35:11,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:35:11,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:35:11,765 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:35:14,807 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:14,817 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 06:35:14,929 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:14,929 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:15,051 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:35:15,257 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 06:35:15,309 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:35:15,309 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:35:15,309 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:405252 +03 二月 2026 | 06:35:15,663 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:35:17,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:405252 +03 二月 2026 | 06:35:17,249 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:35:17,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:35:17,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:35:17,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:35:17,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:35:17,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:35:17,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:35:18,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:35:18,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:35:18,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:35:18,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:35:18,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:35:18,422 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@316e740 +03 二月 2026 | 06:35:19,108 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:35:19,108 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:35:19,108 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:35:19,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:35:19,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:35:19,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:35:19,613 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=405252, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 06:35:22,655 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:22,661 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 06:35:22,779 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:22,779 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:22,866 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 06:35:22,902 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:22,902 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:23,073 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 06:35:24,519 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:24,519 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:25,460 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1---------com.robotcm.taurus.client.MessageResponse@45370b86 +03 二月 2026 | 06:35:25,460 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1getKey---------{robortInfo}:132788 +03 二月 2026 | 06:35:25,460 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1key---------g{0}:play:0 +03 二月 2026 | 06:35:25,460 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1aid---------132788 +03 二月 2026 | 06:35:29,518 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:29,637 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:34,519 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 06:35:34,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 06:35:34,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 06:35:34,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:535488 +03 二月 2026 | 06:35:35,098 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 06:35:36,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:535488 +03 二月 2026 | 06:35:36,655 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:35:36,858 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 06:35:36,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 06:35:36,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 06:35:36,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 06:35:37,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 06:35:37,494 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 06:35:37,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 06:35:37,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 06:35:37,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 06:35:37,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 06:35:37,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 06:35:37,916 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@316e740 +03 二月 2026 | 06:35:38,609 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 06:35:38,609 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 06:35:38,609 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 06:35:38,643 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 06:35:38,677 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 06:35:38,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 06:35:39,109 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=535488, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:49:17,103 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 10:49:17,149 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 10:49:17,441 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 10:49:17,672 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 10:49:21,980 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:15 +03 二月 2026 | 10:49:22,130 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 10:49:25,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 10:49:26,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:49:26,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:49:26,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:344961 +03 二月 2026 | 10:49:26,420 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 10:49:28,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:344961 +03 二月 2026 | 10:49:28,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 10:49:28,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 10:49:28,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:49:28,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:49:28,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:49:28,853 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:49:28,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:49:29,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:49:29,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 10:49:29,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:49:29,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:49:29,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:49:29,409 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@676c8cef +03 二月 2026 | 10:49:30,099 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:49:30,099 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:49:30,099 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:49:30,141 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:49:30,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:49:30,356 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:49:33,740 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 10:49:33,769 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 10:49:33,783 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 10:49:33,987 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:49:34,205 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:49:36,180 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:134 +03 二月 2026 | 10:49:38,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:344961 +03 二月 2026 | 10:49:39,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 10:49:39,198 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 10:49:39,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:49:39,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:49:39,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:49:39,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:49:39,819 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:49:39,863 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:49:39,863 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 10:49:39,863 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:49:39,863 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:49:40,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:49:40,240 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@783ad834 +03 二月 2026 | 10:49:40,941 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:49:40,941 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:49:40,941 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:49:40,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:49:41,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:49:41,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:49:41,895 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 10:49:42,627 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:49:42,628 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:49:42,628 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:924190 +03 二月 2026 | 10:49:42,959 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:49:44,529 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:924190 +03 二月 2026 | 10:49:44,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 10:49:44,748 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 10:49:44,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:49:44,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:49:44,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:49:45,245 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:49:45,368 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:49:45,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:49:45,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 10:49:45,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:49:45,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:49:45,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:49:45,788 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@783ad834 +03 二月 2026 | 10:49:46,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:49:46,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:49:46,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:49:46,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:49:46,562 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:49:46,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:49:50,105 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 10:49:50,187 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:49:50,188 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:49:50,224 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:49:50,419 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:49:50,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:49:50,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:49:50,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:924190 +03 二月 2026 | 10:49:51,126 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 10:49:52,696 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:924190 +03 二月 2026 | 10:49:52,732 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:49:52,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:49:53,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 10:49:53,062 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:49:53,372 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=924190, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:49:56,415 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:49:56,519 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:49:56,519 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:49:56,711 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:49:56,711 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:49:56,711 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:924190 +03 二月 2026 | 10:49:57,081 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:49:58,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:924190 +03 二月 2026 | 10:49:58,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:49:58,997 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:49:59,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:49:59,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:49:59,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:49:59,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:49:59,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:49:59,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:49:59,632 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 10:49:59,632 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:49:59,632 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:49:59,790 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:50:00,009 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@783ad834 +03 二月 2026 | 10:50:00,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:50:00,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:50:00,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:50:00,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:50:00,754 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:50:00,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:50:01,251 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=924190, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:50:04,294 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:50:04,313 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 10:50:04,424 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:50:04,424 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:50:04,568 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:50:04,777 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:50:04,865 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:50:04,865 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:50:04,865 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:924190 +03 二月 2026 | 10:50:05,246 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 10:50:06,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:924190 +03 二月 2026 | 10:50:06,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:50:07,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:50:07,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:50:07,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:50:07,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:50:07,533 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:50:07,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:50:07,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:50:07,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 10:50:07,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:50:07,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:50:07,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:50:08,076 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@676c8cef +03 二月 2026 | 10:50:08,734 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:50:08,735 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:50:08,735 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:50:08,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:50:08,819 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:50:08,990 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:50:09,314 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=924190, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:50:12,367 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:50:12,393 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 10:50:12,496 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:50:12,496 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:50:12,601 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:50:12,795 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:50:12,829 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:50:12,829 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:50:12,829 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:924190 +03 二月 2026 | 10:50:13,193 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:50:14,760 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:924190 +03 二月 2026 | 10:50:14,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:50:15,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:50:15,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:50:15,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:50:15,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:50:15,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:50:15,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:50:15,625 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:50:15,625 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8640000 +03 二月 2026 | 10:50:15,625 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:50:15,625 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:50:15,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:50:15,999 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@783ad834 +03 二月 2026 | 10:50:16,662 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:50:16,663 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:50:16,663 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:50:16,706 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:50:16,748 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:50:16,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:50:17,242 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=924190, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:52:14,999 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 10:52:15,043 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 10:53:19,078 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 10:53:19,129 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 10:53:19,456 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 10:53:19,690 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 10:53:23,955 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:16 +03 二月 2026 | 10:53:24,076 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 10:53:24,341 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:53:24,342 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:53:24,342 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:924190 +03 二月 2026 | 10:53:24,812 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 10:53:26,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:924190 +03 二月 2026 | 10:53:26,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:53:27,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:53:27,183 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:53:27,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:53:27,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:53:27,629 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:53:27,742 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:53:27,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:53:27,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 10:53:27,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:53:27,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:53:27,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:53:28,154 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7d7d9150 +03 二月 2026 | 10:53:28,848 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:53:28,848 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:53:28,848 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:53:28,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:53:28,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:53:29,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:53:29,374 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=924190, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:53:32,417 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 10:53:32,439 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 10:53:32,460 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 10:53:32,861 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:53:33,092 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:53:35,188 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:135 +03 二月 2026 | 10:53:35,552 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:53:35,552 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:53:35,552 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:344961 +03 二月 2026 | 10:53:36,132 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:53:37,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:344961 +03 二月 2026 | 10:53:37,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:53:38,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:53:38,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 10:53:38,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:53:38,492 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=344961, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:53:40,561 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=120.229.85.158, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/PiajxSqBRaEKb1FDKWGIGy2PXoia8rrDFm7oFkLnbQnq1dAb2ib2YJTehNjJiaiaxmrqaUxul4pgbkMCuibIibang2u4K85ItZPuB7e7egzSiaHDMEyJWn0MPhNrBg/132, entrust=false, nick=惘, seat=2, ready=0, hp_info={cur_hp=8640000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=907904} +03 二月 2026 | 10:53:41,561 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 10:53:41,611 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,612 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,693 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,694 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,775 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,775 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,786 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:53:41,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,937 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,937 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:41,966 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:53:41,966 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------132788 +03 二月 2026 | 10:53:42,018 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:42,018 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:42,036 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 10:53:42,098 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:42,189 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 10:53:42,300 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:53:42,476 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:53:42,477 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------132788 +03 二月 2026 | 10:53:42,547 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 10:53:42,731 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++132788 +03 二月 2026 | 10:53:42,836 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 10:53:42,872 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 10:53:42,908 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@678b7b3b +03 二月 2026 | 10:53:42,943 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++132788 +03 二月 2026 | 10:53:43,048 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 10:53:43,083 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 10:53:43,120 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@678b7b3b +03 二月 2026 | 10:53:43,120 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 104, 102, 103, 203, 107, 205, 209, 201, 206, 206, 103, 108, 204, 205, 104, 203, 206, 103, 108, 107, 209, 106, 108, 101, 204, 107] +03 二月 2026 | 10:53:43,120 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 10:53:43,120 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 10:53:43,120 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 10:53:43,120 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 10:53:43,457 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:43,457 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:46,456 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:46,457 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:49,457 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:53:49,457 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:56:37,975 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 10:56:38,019 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 10:57:31,092 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 10:57:31,137 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 10:57:31,406 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 10:57:31,658 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 10:57:35,871 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:17 +03 二月 2026 | 10:57:36,016 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 10:57:36,306 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:57:36,306 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:57:36,306 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:344961 +03 二月 2026 | 10:57:36,736 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 10:57:38,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:344961 +03 二月 2026 | 10:57:38,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:57:38,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:57:38,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:57:38,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:57:38,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:57:39,395 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:57:39,504 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:57:39,538 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:57:39,538 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 10:57:39,538 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:57:39,538 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:57:39,675 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:57:39,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b287c83 +03 二月 2026 | 10:57:40,579 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:57:40,580 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:57:40,580 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:57:40,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:57:40,649 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:57:40,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:57:41,065 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=344961, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:57:44,109 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 10:57:44,119 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 10:57:44,144 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 10:57:44,424 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:57:44,603 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:57:46,932 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:136 +03 二月 2026 | 10:57:49,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:344961 +03 二月 2026 | 10:57:49,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 10:57:49,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 10:57:50,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:57:50,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:57:50,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:57:50,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:57:50,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:57:50,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:57:50,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 10:57:50,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:57:50,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:57:50,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:57:50,935 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 10:57:51,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:57:51,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:57:51,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:57:51,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:57:51,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:57:51,858 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:57:52,530 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 10:57:53,408 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:57:53,408 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:57:53,408 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:304374 +03 二月 2026 | 10:57:53,767 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:57:55,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 10:57:55,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 10:57:55,580 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 10:57:55,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:57:55,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:57:55,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:57:56,037 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:57:56,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:57:56,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:57:56,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 10:57:56,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:57:56,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:57:56,336 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:57:56,584 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 10:57:57,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:57:57,291 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:57:57,292 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:57:57,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:57:57,359 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:57:57,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:58:00,868 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 10:58:00,935 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:00,936 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:00,988 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:58:01,016 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,016 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,098 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,099 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,181 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,182 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,203 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:58:01,263 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,264 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,345 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,345 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,426 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,427 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,507 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,508 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,590 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,590 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:01,671 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:04,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:04,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:07,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:07,487 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:10,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:10,487 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:10,774 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:58:10,774 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:58:10,774 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:304374 +03 二月 2026 | 10:58:11,100 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:58:12,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 10:58:12,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:58:12,778 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:58:12,887 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:58:12,887 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:58:12,887 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:58:13,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:58:13,315 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:58:13,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:58:13,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 10:58:13,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:58:13,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:58:13,490 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:58:13,714 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 10:58:14,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:58:14,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:58:14,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:58:14,431 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:58:14,465 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:58:14,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:58:14,890 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=304374, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:58:17,932 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:17,945 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 10:58:18,007 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:18,007 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:18,080 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:18,218 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:58:18,438 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:58:19,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:19,483 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:22,405 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:22,478 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:25,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:25,478 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:28,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:28,491 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:28,769 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:58:28,769 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:58:28,769 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:304374 +03 二月 2026 | 10:58:29,112 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:58:30,683 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 10:58:30,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:58:30,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:58:31,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:58:31,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:58:31,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:58:31,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:58:31,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:58:31,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:58:31,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 10:58:31,690 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:58:31,690 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:58:32,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:58:32,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 10:58:33,073 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:58:33,073 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:58:33,073 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:58:33,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:58:33,141 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:58:33,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:58:33,587 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=304374, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:58:36,627 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:36,649 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 10:58:36,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:36,706 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:36,784 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:36,870 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:58:37,047 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:58:37,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:37,486 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:40,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:40,485 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:42,757 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.252, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eogVxE1nPJ2bkxic10ZIltDWk4V2a789ccB0a4pGxicdO11pMOP7oUA5Dibpdib3p0vWMibp34xpAicXQmg/132, entrust=false, nick=敬你是条狗, seat=2, ready=0, hp_info={cur_hp=4309000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=177475} +03 二月 2026 | 10:58:43,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:43,484 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:46,405 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:46,484 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:46,751 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:58:46,751 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:58:46,751 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:304374 +03 二月 2026 | 10:58:47,082 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:58:48,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 10:58:48,754 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:58:48,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:58:49,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:58:49,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:58:49,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:58:49,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:58:49,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:58:49,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:58:49,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 10:58:49,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:58:49,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:58:49,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:58:49,910 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 10:58:50,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:58:50,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:58:50,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:58:50,658 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:58:50,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:58:50,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:58:51,123 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=304374, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:58:54,163 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:54,185 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 10:58:54,234 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:54,234 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:54,306 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:54,413 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:58:54,588 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:58:55,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:55,478 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:58,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:58:58,477 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:01,405 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:01,477 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:04,405 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:04,477 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:04,731 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:59:04,731 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:59:04,731 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:304374 +03 二月 2026 | 10:59:05,128 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:59:06,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 10:59:06,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:59:07,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:59:07,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:59:07,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:59:07,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:59:07,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:59:07,624 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:59:07,659 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:59:07,659 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 10:59:07,659 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:59:07,659 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:59:07,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:59:08,049 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 10:59:08,756 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:59:08,756 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:59:08,756 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:59:08,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:59:08,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:59:08,991 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:59:09,304 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=304374, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:59:12,345 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:12,366 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 10:59:12,439 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:12,439 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:12,532 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:12,617 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:59:12,822 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:59:13,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:13,500 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:16,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:16,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:19,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:19,511 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:22,405 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:22,499 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:22,800 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:59:22,801 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:59:22,801 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:304374 +03 二月 2026 | 10:59:23,129 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:59:24,776 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 10:59:24,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:59:24,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:59:25,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:59:25,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:59:25,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:59:25,448 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:59:25,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:59:25,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:59:25,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 10:59:25,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:59:25,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:59:25,737 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:59:25,973 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 10:59:26,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:59:26,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:59:26,780 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:59:26,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:59:26,848 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:59:26,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:59:27,276 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=304374, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:59:30,317 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:30,337 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 10:59:30,387 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:30,387 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:30,458 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:30,567 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:59:30,747 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:59:31,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:31,478 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:34,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:34,477 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:37,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:37,476 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:40,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:40,477 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:40,730 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:59:40,730 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:59:40,730 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:304374 +03 二月 2026 | 10:59:41,110 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 10:59:42,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 10:59:42,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:59:42,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 10:59:43,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 10:59:43,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 10:59:43,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 10:59:43,434 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 10:59:43,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 10:59:43,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 10:59:43,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 10:59:43,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 10:59:43,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 10:59:43,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 10:59:43,964 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 10:59:44,670 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 10:59:44,670 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 10:59:44,670 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 10:59:44,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 10:59:44,737 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 10:59:44,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 10:59:45,197 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=304374, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 10:59:48,237 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:48,256 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 10:59:48,324 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:48,324 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:48,411 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:48,526 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 10:59:48,759 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 10:59:49,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:49,494 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:52,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:52,494 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:55,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:55,493 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:58,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:58,493 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 10:59:58,797 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 10:59:58,797 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 10:59:58,797 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:304374 +03 二月 2026 | 10:59:59,118 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:00:00,668 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:00:00,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:00:00,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:00:00,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:00:00,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:00:00,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:00:01,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:00:01,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:00:01,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:00:01,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:00:01,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:00:01,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:00:01,620 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:00:01,858 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 11:00:02,569 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:00:02,569 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:00:02,569 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:00:02,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:00:02,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:00:02,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:00:03,056 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=304374, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:00:06,095 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:06,113 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:00:06,161 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:06,162 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:06,228 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:06,348 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 11:00:06,552 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 11:00:07,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:07,477 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:10,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:10,472 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:13,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:13,473 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:16,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:16,473 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:16,734 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:00:16,734 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:00:16,734 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:304374 +03 二月 2026 | 11:00:17,052 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:00:18,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:00:18,887 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:00:19,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:00:19,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:00:19,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:00:19,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:00:19,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:00:19,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:00:19,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:00:19,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:00:19,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:00:19,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:00:19,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:00:20,082 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fd02ca +03 二月 2026 | 11:00:20,784 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:00:20,784 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:00:20,784 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:00:20,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:00:20,853 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:00:20,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:00:21,277 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=304374, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:00:24,316 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:24,329 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:00:24,383 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:24,383 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:24,451 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:24,569 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 11:00:24,774 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 11:00:25,405 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:25,473 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:28,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:31,508 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:00:31,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:00:31,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:00:31,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:00:31,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:00:31,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:00:32,179 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:00:32,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:00:32,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:00:32,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:00:32,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:00:32,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:00:32,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:00:32,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b287c83 +03 二月 2026 | 11:00:33,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:00:33,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:00:33,407 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:00:33,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:00:33,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:00:33,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:00:34,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:00:35,127 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:00:35,127 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:00:35,127 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:438118 +03 二月 2026 | 11:00:35,475 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:00:37,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:438118 +03 二月 2026 | 11:00:37,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:00:37,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:00:37,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:00:37,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:00:37,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:00:37,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:00:37,817 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:00:37,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:00:37,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:00:37,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:00:37,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:00:37,993 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:00:38,231 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b287c83 +03 二月 2026 | 11:00:38,936 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:00:38,936 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:00:38,936 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:00:38,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:00:39,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:00:39,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:00:42,486 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:42,594 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:42,595 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:00:45,748 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:00:45,790 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:00:45,947 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:00:45,952 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:00:45,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:00:46,093 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:00:46,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:00:46,774 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:00:47,530 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:00:47,530 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:00:47,530 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:996786 +03 二月 2026 | 11:00:47,912 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:00:49,546 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:996786 +03 二月 2026 | 11:00:49,588 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:00:49,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:00:49,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:00:49,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:00:56,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:00:56,727 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:00:56,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:00:57,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:00:57,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:00:57,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:00:58,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:00:58,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:00:58,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:499664 +03 二月 2026 | 11:00:58,700 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:01:00,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:499664 +03 二月 2026 | 11:01:00,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:01:00,474 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:01:00,591 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:01:00,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:01:04,009 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:01:08,098 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:01:08,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:01:08,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:01:08,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:01:08,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:01:09,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:01:10,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:01:10,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:01:10,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:250905 +03 二月 2026 | 11:01:14,092 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:01:14,135 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:01:14,408 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:01:14,637 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:01:18,935 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:01:23,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:01:23,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:01:23,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:01:23,690 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:01:23,690 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:01:23,691 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:01:24,158 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:01:24,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:01:24,307 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:01:24,307 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:01:24,307 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:01:24,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:01:24,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:01:24,706 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67ca0b4f +03 二月 2026 | 11:01:25,393 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:01:25,393 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:01:25,393 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:01:25,438 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:01:25,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:01:25,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:01:26,374 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:01:27,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:01:27,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:01:27,247 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:314801 +03 二月 2026 | 11:01:27,594 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:01:29,263 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:314801 +03 二月 2026 | 11:01:29,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:01:29,520 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:01:29,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:01:29,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:01:29,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:01:30,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:01:30,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:01:30,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:01:30,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:01:30,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:01:30,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:01:30,673 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:01:30,912 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67ca0b4f +03 二月 2026 | 11:01:31,601 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:01:31,602 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:01:31,602 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:01:31,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:01:31,690 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:01:31,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:01:35,304 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:01:35,322 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:01:35,344 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:01:35,510 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:01:38,050 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:18 +03 二月 2026 | 11:01:42,956 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:01:42,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:01:43,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:01:43,314 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:01:43,314 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:01:43,315 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:01:43,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:01:43,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:01:43,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:01:43,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:01:43,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:01:43,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:01:43,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:01:44,213 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@c9baf09 +03 二月 2026 | 11:01:44,962 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:01:44,962 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:01:44,962 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:01:45,006 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:01:45,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:01:45,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:01:45,945 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:01:46,696 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:01:46,696 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:01:46,696 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:222258 +03 二月 2026 | 11:01:47,052 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:01:48,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:222258 +03 二月 2026 | 11:01:48,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:01:48,963 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:01:49,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:01:49,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:01:49,067 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:01:49,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:01:49,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:01:49,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:01:49,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:01:49,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:01:49,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:01:49,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:01:49,966 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@c9baf09 +03 二月 2026 | 11:01:50,657 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:01:50,657 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:01:50,657 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:01:50,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:01:50,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:01:50,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:01:54,284 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:01:54,297 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:01:54,326 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:01:54,513 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:01:56,980 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:137 +03 二月 2026 | 11:02:02,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:314801 +03 二月 2026 | 11:02:02,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:02:02,549 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:02:02,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:02:02,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:02:03,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:02:04,111 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:02:04,111 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:02:04,111 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:732550 +03 二月 2026 | 11:02:04,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:02:06,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:732550 +03 二月 2026 | 11:02:06,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:02:06,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:02:06,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:02:06,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:02:09,969 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:02:10,087 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:02:10,087 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:02:14,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:02:14,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:02:15,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:02:15,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:02:15,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:02:15,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:02:16,662 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:02:16,662 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:02:16,662 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:545891 +03 二月 2026 | 11:02:16,991 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:02:18,625 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:545891 +03 二月 2026 | 11:02:18,662 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:02:18,864 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:02:18,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:02:19,006 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:02:22,360 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:02:27,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:304374 +03 二月 2026 | 11:02:27,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:02:27,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:02:27,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:02:27,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:02:28,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:02:29,297 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:02:29,297 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:02:29,297 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:492285 +03 二月 2026 | 11:02:29,633 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:02:31,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:492285 +03 二月 2026 | 11:02:31,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:02:31,920 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:02:32,025 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:02:32,063 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:02:35,424 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:02:35,542 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:02:35,657 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:02:35,657 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:02:40,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:222258 +03 二月 2026 | 11:02:40,593 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:02:40,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:02:40,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:02:40,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:02:40,897 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:02:41,242 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:02:41,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:02:41,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:02:41,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:02:41,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:02:41,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:02:41,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:02:41,792 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@34bf696f +03 二月 2026 | 11:02:42,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:02:42,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:02:42,477 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:02:42,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:02:42,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:02:42,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:02:43,444 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:02:44,178 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:02:44,178 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:02:44,178 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:845563 +03 二月 2026 | 11:02:44,508 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:02:46,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:845563 +03 二月 2026 | 11:02:46,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:02:46,368 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:02:46,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:02:46,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:02:46,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:02:46,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:02:46,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:02:46,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:02:46,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:02:46,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:02:46,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:02:47,137 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:02:47,365 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@34bf696f +03 二月 2026 | 11:02:48,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:02:48,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:02:48,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:02:48,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:02:48,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:02:48,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:02:51,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:02:51,667 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:02:51,961 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:02:57,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:314801 +03 二月 2026 | 11:02:57,887 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:02:58,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:02:58,208 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:02:58,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:02:58,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:02:59,697 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:02:59,697 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:02:59,697 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:436699 +03 二月 2026 | 11:03:00,067 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:03:01,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:436699 +03 二月 2026 | 11:03:01,840 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:02,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:02,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:03:02,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:03:05,572 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:03:05,702 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:03:05,833 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:03:05,833 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:03:11,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:222258 +03 二月 2026 | 11:03:11,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:03:11,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:03:11,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:03:11,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:03:11,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:03:12,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:03:12,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:03:12,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:03:12,508 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:03:12,508 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:03:12,508 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:03:12,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:03:12,908 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@c9baf09 +03 二月 2026 | 11:03:13,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:03:13,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:03:13,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:03:13,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:03:13,677 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:03:13,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:03:14,570 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:03:15,304 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:03:15,304 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:03:15,304 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:805073 +03 二月 2026 | 11:03:15,645 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:03:17,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:805073 +03 二月 2026 | 11:03:17,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:17,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:17,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:03:17,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:03:17,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:03:18,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:03:18,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:03:18,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:03:18,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:03:18,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:03:18,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:03:18,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:03:18,742 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@c9baf09 +03 二月 2026 | 11:03:19,428 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:03:19,428 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:03:19,428 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:03:19,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:03:19,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:03:19,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:03:23,039 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:03:25,992 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:03:26,004 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:03:26,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:845563 +03 二月 2026 | 11:03:26,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:03:26,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:03:26,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:03:26,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:03:27,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:03:28,024 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:03:28,024 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:03:28,024 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:966881 +03 二月 2026 | 11:03:28,398 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:03:30,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:966881 +03 二月 2026 | 11:03:30,200 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:30,418 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:30,526 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:03:30,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:03:37,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:845563 +03 二月 2026 | 11:03:37,217 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:03:37,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:03:37,547 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:03:37,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:03:38,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:03:39,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:03:39,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:03:39,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:718774 +03 二月 2026 | 11:03:39,370 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:03:41,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:718774 +03 二月 2026 | 11:03:41,113 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:41,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:41,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:03:41,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:03:44,877 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:03:48,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:845563 +03 二月 2026 | 11:03:48,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:03:48,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:03:48,387 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:03:48,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:03:49,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:03:49,861 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:03:49,861 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:03:49,861 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:559224 +03 二月 2026 | 11:03:50,217 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:03:51,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:559224 +03 二月 2026 | 11:03:51,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:52,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:03:52,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:03:52,345 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:03:58,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:845563 +03 二月 2026 | 11:03:58,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:03:58,815 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:03:58,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:03:58,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:03:58,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:03:59,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:03:59,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:03:59,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:03:59,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:03:59,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:03:59,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:03:59,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:03:59,870 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67ca0b4f +03 二月 2026 | 11:04:00,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:04:00,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:04:00,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:04:00,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:04:00,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:04:00,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:04:01,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:04:02,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:04:02,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:04:02,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:893087 +03 二月 2026 | 11:04:02,580 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:04:04,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:893087 +03 二月 2026 | 11:04:04,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:04:04,450 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:04:04,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:04:04,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:04:04,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:04:04,895 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:04:04,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:04:05,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:04:05,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:04:05,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:04:05,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:04:05,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:04:05,440 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@67ca0b4f +03 二月 2026 | 11:04:06,122 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:04:06,123 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:04:06,123 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:04:06,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:04:06,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:04:06,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:04:36,563 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:04:36,608 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:04:36,874 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:04:37,102 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:04:41,273 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:04:44,460 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:04:45,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:04:45,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:04:45,679 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:247652 +03 二月 2026 | 11:04:46,048 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:04:47,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:247652 +03 二月 2026 | 11:04:47,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:04:48,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:04:48,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:04:48,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:04:48,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:04:48,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:04:48,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:04:48,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:04:48,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:04:48,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:04:48,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:04:48,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:04:49,166 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3cd207bb +03 二月 2026 | 11:04:49,960 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:04:49,960 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:04:49,960 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:04:50,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:04:50,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:04:50,223 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:04:53,605 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:04:53,645 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:04:55,988 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:19 +03 二月 2026 | 11:04:58,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:04:59,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:04:59,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:04:59,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:820534 +03 二月 2026 | 11:04:59,660 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:05:01,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:820534 +03 二月 2026 | 11:05:01,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:01,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:01,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:05:01,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:05:01,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:05:02,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:05:02,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:05:02,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:05:02,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:05:02,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:05:02,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:05:02,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:05:02,728 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@ed6c89e +03 二月 2026 | 11:05:03,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:05:03,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:05:03,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:05:03,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:05:03,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:05:03,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:05:07,128 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:05:07,163 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:05:09,570 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:138 +03 二月 2026 | 11:05:12,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:05:12,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:05:12,975 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:05:12,975 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:879308 +03 二月 2026 | 11:05:13,340 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:05:15,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:879308 +03 二月 2026 | 11:05:15,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:15,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:15,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:05:15,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:05:15,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:05:15,882 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:05:16,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:05:16,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:05:16,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:05:16,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:05:16,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:05:16,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:05:16,469 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6f02e830 +03 二月 2026 | 11:05:17,259 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:05:17,260 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:05:17,260 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:05:17,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:05:17,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:05:17,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:05:21,068 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:05:21,190 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:05:21,191 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:05:23,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:05:24,584 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:05:24,584 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:05:24,584 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:474878 +03 二月 2026 | 11:05:24,985 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:05:26,879 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:474878 +03 二月 2026 | 11:05:26,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:27,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:27,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:05:27,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:05:27,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:05:27,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:05:28,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:05:28,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:05:28,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:05:28,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:05:28,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:05:28,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:05:28,581 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3cd207bb +03 二月 2026 | 11:05:29,371 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:05:29,372 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:05:29,372 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:05:29,416 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:05:29,461 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:05:29,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:05:33,030 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:05:35,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:05:36,321 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:05:36,321 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:05:36,321 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:787832 +03 二月 2026 | 11:05:36,691 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:05:38,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:787832 +03 二月 2026 | 11:05:38,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:38,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:38,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:05:38,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:05:38,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:05:39,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:05:39,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:05:39,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:05:39,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:05:39,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:05:39,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:05:39,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:05:39,670 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@ed6c89e +03 二月 2026 | 11:05:40,379 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:05:40,379 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:05:40,379 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:05:40,423 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:05:40,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:05:40,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:05:43,992 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:05:44,113 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:05:44,232 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:05:44,233 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:05:46,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:05:47,272 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:05:47,272 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:05:47,272 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:564828 +03 二月 2026 | 11:05:47,574 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:05:49,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:564828 +03 二月 2026 | 11:05:49,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:49,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:05:49,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:05:49,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:05:49,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:05:49,853 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:05:49,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:05:49,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:05:49,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:05:49,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:05:49,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:05:50,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:05:50,377 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6f02e830 +03 二月 2026 | 11:05:51,081 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:05:51,081 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:05:51,081 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:05:51,126 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:05:51,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:05:51,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:05:54,675 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:05:57,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:05:57,745 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:05:57,745 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:05:57,745 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:221332 +03 二月 2026 | 11:05:58,097 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:06:04,708 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:06:04,761 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:06:05,019 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:06:05,248 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:06:09,696 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:06:13,005 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:06:13,920 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:06:13,920 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:06:13,920 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:395964 +03 二月 2026 | 11:06:14,354 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:06:16,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:395964 +03 二月 2026 | 11:06:16,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:06:16,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:06:16,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:06:16,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:06:16,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:06:16,874 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:06:16,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:06:17,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:06:17,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:06:17,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:06:17,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:06:17,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:06:17,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@8efa585 +03 二月 2026 | 11:06:18,237 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:06:18,237 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:06:18,237 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:06:18,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:06:18,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:06:18,470 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:06:21,824 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:06:21,864 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:06:24,411 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:20 +03 二月 2026 | 11:06:26,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:06:27,730 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:06:27,730 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:06:27,730 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:333481 +03 二月 2026 | 11:06:28,086 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:06:29,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:333481 +03 二月 2026 | 11:06:29,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:06:30,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:06:30,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:06:30,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:06:30,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:06:30,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:06:30,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:06:30,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:06:30,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:06:30,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:06:30,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:06:30,846 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:06:31,109 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3b190ab2 +03 二月 2026 | 11:06:31,910 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:06:31,910 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:06:31,910 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:06:31,948 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:06:31,986 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:06:32,139 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:06:35,501 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:06:35,540 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:06:38,379 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:139 +03 二月 2026 | 11:06:41,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:06:41,873 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:06:41,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:06:41,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:985528 +03 二月 2026 | 11:06:42,288 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:06:44,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:985528 +03 二月 2026 | 11:06:44,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:06:44,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:06:44,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:06:44,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:06:44,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:06:44,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:06:45,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:06:45,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:06:45,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:06:45,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:06:45,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:06:45,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:06:45,517 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2c91a6a9 +03 二月 2026 | 11:06:46,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:06:46,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:06:46,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:06:46,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:06:46,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:06:46,573 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:06:50,094 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:06:50,243 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:06:50,243 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:06:52,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:06:53,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:06:53,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:06:53,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:234273 +03 二月 2026 | 11:06:53,664 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:06:55,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:234273 +03 二月 2026 | 11:06:55,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:06:55,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:06:55,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:06:55,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:06:55,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:06:56,003 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:06:56,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:06:56,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:06:56,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:06:56,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:06:56,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:06:56,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:06:56,558 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@8efa585 +03 二月 2026 | 11:06:57,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:06:57,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:06:57,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:06:57,377 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:06:57,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:06:57,558 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:07:02,660 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:07:02,706 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:07:02,998 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:07:03,236 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:07:07,774 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:07:11,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:07:11,849 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:07:11,850 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:07:11,850 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:783180 +03 二月 2026 | 11:07:12,216 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:07:13,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:783180 +03 二月 2026 | 11:07:13,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:07:14,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:07:14,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:07:14,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:07:14,216 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:07:14,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:07:14,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:07:14,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:07:14,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:07:14,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:07:14,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:07:14,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:07:15,096 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@12e609f +03 二月 2026 | 11:07:15,767 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:07:15,767 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:07:15,767 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:07:15,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:07:15,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:07:16,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:07:19,374 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:07:19,416 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:07:21,875 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:21 +03 二月 2026 | 11:07:24,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:07:25,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:07:25,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:07:25,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:605546 +03 二月 2026 | 11:08:15,449 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:08:15,491 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:08:15,747 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:08:15,961 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:08:20,339 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:08:24,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:08:25,039 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:08:25,039 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:08:25,039 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:205629 +03 二月 2026 | 11:08:25,410 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:08:27,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:205629 +03 二月 2026 | 11:08:27,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:08:27,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:08:27,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:08:27,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:08:27,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:08:27,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:08:27,885 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:08:27,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:08:27,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:08:27,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:08:27,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:08:28,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:08:28,332 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@396788f9 +03 二月 2026 | 11:08:29,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:08:29,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:08:29,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:08:29,063 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:08:29,098 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:08:29,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:08:32,569 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:08:32,603 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:08:35,000 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:22 +03 二月 2026 | 11:08:37,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:08:38,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:08:38,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:08:38,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:151652 +03 二月 2026 | 11:08:38,594 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:08:40,196 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:151652 +03 二月 2026 | 11:08:40,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:08:40,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:08:40,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:08:40,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:08:40,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:08:40,895 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:08:41,008 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:08:41,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:08:41,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:08:41,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:08:41,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:08:41,223 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:08:41,454 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@41e0897 +03 二月 2026 | 11:08:42,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:08:42,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:08:42,384 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:08:42,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:08:42,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:08:42,600 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:09:35,285 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:09:35,329 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:09:35,588 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:09:35,817 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:09:40,608 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:09:44,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:09:44,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:09:44,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:09:44,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:303446 +03 二月 2026 | 11:09:45,308 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:09:47,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:303446 +03 二月 2026 | 11:09:47,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:09:47,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:09:47,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:09:47,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:09:47,433 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:09:47,806 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:09:47,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:09:47,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:09:47,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:09:47,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:09:47,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:09:48,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:09:48,368 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7079fd37 +03 二月 2026 | 11:09:49,080 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:09:49,081 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:09:49,081 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:09:49,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:09:49,181 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:09:49,358 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:09:52,746 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:09:52,783 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:09:55,720 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:23 +03 二月 2026 | 11:09:58,335 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:09:59,135 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:09:59,135 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:09:59,135 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:855889 +03 二月 2026 | 11:09:59,522 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:10:01,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:855889 +03 二月 2026 | 11:10:01,348 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:01,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:01,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:10:01,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:10:01,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:10:02,092 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:10:02,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:10:02,259 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:10:02,259 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:10:02,259 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:10:02,259 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:10:02,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:10:02,679 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@27a7aea5 +03 二月 2026 | 11:10:03,375 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:10:03,375 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:10:03,375 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:10:03,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:10:03,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:10:03,665 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:10:07,058 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:10:07,103 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:10:09,907 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:140 +03 二月 2026 | 11:10:12,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:10:13,307 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:10:13,307 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:10:13,308 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:819609 +03 二月 2026 | 11:10:13,657 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:10:15,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:819609 +03 二月 2026 | 11:10:15,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:15,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:15,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:10:15,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:10:15,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:10:16,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:10:16,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:10:16,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:10:16,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:10:16,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:10:16,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:10:16,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:10:16,682 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@45c0f857 +03 二月 2026 | 11:10:17,384 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:10:17,384 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:10:17,384 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:10:17,434 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:10:17,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:10:17,663 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:10:21,167 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:10:21,286 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:10:21,287 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:10:23,683 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:10:24,428 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:10:24,429 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:10:24,429 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:508627 +03 二月 2026 | 11:10:24,760 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:10:26,427 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:508627 +03 二月 2026 | 11:10:26,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:26,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:26,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:10:26,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:10:26,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:10:27,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:10:27,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:10:27,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:10:27,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:10:27,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:10:27,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:10:27,506 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:10:27,737 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7079fd37 +03 二月 2026 | 11:10:28,433 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:10:28,433 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:10:28,433 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:10:28,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:10:28,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:10:28,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:10:32,088 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:10:34,489 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:10:35,234 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:10:35,234 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:10:35,235 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:475995 +03 二月 2026 | 11:10:35,642 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:10:37,208 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:475995 +03 二月 2026 | 11:10:37,242 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:37,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:37,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:10:37,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:10:37,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:10:37,963 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:10:38,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:10:38,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:10:38,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:10:38,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:10:38,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:10:38,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:10:38,526 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@27a7aea5 +03 二月 2026 | 11:10:39,237 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:10:39,237 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:10:39,237 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:10:39,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:10:39,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:10:39,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:10:42,883 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:10:42,987 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:10:43,091 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:10:43,091 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:10:45,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:10:46,352 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:10:46,352 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:10:46,352 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:358795 +03 二月 2026 | 11:10:46,675 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:10:48,359 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:358795 +03 二月 2026 | 11:10:48,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:48,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:48,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:10:48,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:10:48,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:10:49,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:10:49,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:10:49,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:10:49,235 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:10:49,235 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:10:49,235 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:10:49,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:10:49,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@45c0f857 +03 二月 2026 | 11:10:50,322 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:10:50,322 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:10:50,322 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:10:50,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:10:50,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:10:50,591 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:10:53,964 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:10:56,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:10:57,221 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:10:57,222 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:10:57,222 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:347817 +03 二月 2026 | 11:10:57,577 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:10:59,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:347817 +03 二月 2026 | 11:10:59,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:59,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:10:59,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:10:59,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:10:59,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:11:00,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:11:00,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:11:00,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:11:00,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:11:00,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:11:00,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:11:00,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:11:00,862 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7079fd37 +03 二月 2026 | 11:11:01,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:11:01,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:11:01,557 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:11:01,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:11:01,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:11:01,837 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:11:05,230 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:05,354 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:05,476 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:05,476 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:07,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:11:08,626 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:11:08,626 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:11:08,626 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:927668 +03 二月 2026 | 11:11:08,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:11:10,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:927668 +03 二月 2026 | 11:11:10,687 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:11:10,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:11:11,003 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:11:11,003 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:11:11,003 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:11:11,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:11:11,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:11:11,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:11:11,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:11:11,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:11:11,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:11:11,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:11:11,952 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@27a7aea5 +03 二月 2026 | 11:11:12,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:11:12,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:11:12,646 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:11:12,696 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:11:12,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:11:12,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:11:16,285 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:18,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:11:19,525 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:11:19,525 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:11:19,526 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:951077 +03 二月 2026 | 11:11:19,879 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:11:21,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:951077 +03 二月 2026 | 11:11:21,677 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:11:21,929 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:11:22,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:11:22,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:11:22,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:11:22,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:11:22,529 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:11:22,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:11:22,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:11:22,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:11:22,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:11:22,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:11:22,977 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@45c0f857 +03 二月 2026 | 11:11:23,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:11:23,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:11:23,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:11:23,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:11:23,778 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:11:23,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:11:27,340 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:27,461 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:27,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:27,581 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:30,035 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:11:30,803 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:11:30,803 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:11:30,803 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:309534 +03 二月 2026 | 11:11:31,164 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:11:32,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:309534 +03 二月 2026 | 11:11:32,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:11:33,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:11:33,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:11:33,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:11:33,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:11:33,696 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:11:33,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:11:33,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:11:33,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:11:33,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:11:33,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:11:34,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:11:34,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7079fd37 +03 二月 2026 | 11:11:34,952 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:11:34,952 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:11:34,952 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:11:35,002 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:11:35,052 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:11:35,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:11:38,614 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:41,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:11:42,107 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:11:42,107 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:11:42,107 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:877115 +03 二月 2026 | 11:11:42,509 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:11:44,261 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:877115 +03 二月 2026 | 11:11:44,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:11:44,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:11:44,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:11:44,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:11:44,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:11:44,985 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:11:45,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:11:45,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:11:45,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:11:45,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:11:45,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:11:45,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:11:45,541 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@27a7aea5 +03 二月 2026 | 11:11:46,239 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:11:46,239 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:11:46,239 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:11:46,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:11:46,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:11:46,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:11:49,886 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:49,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:50,114 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:50,114 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:11:52,511 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:11:53,252 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:11:53,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:11:53,253 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:117134 +03 二月 2026 | 11:11:53,579 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:11:55,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:117134 +03 二月 2026 | 11:11:55,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:11:55,468 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:16:56,702 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:16:56,749 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:16:57,022 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:16:57,265 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:17:01,575 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:10 +03 二月 2026 | 11:17:01,724 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:17:04,858 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:17:05,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:17:05,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:17:05,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:154813 +03 二月 2026 | 11:17:06,096 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:17:07,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:17:07,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:17:08,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:17:08,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:17:08,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:17:08,233 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:17:08,588 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:17:08,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:17:08,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:17:08,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:17:08,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:17:08,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:17:08,915 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:17:09,178 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@198eff6a +03 二月 2026 | 11:17:09,976 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:17:09,976 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:17:09,976 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:17:10,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:17:10,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:17:10,200 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:17:13,554 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:17:13,572 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:17:13,592 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:17:13,780 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:17:16,647 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:24 +03 二月 2026 | 11:17:19,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:17:20,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:17:20,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:17:20,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:17:20,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:17:20,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:17:20,772 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:17:20,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:17:20,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:17:20,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:17:20,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:17:20,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:17:21,109 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:17:21,377 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b2cd8d +03 二月 2026 | 11:17:22,171 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:17:22,171 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:17:22,172 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:17:22,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:17:22,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:17:22,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:17:23,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:17:23,944 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:17:23,944 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:17:23,944 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:329041 +03 二月 2026 | 11:17:24,324 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:17:26,068 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:329041 +03 二月 2026 | 11:17:26,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:17:26,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:17:26,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:17:26,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:17:26,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:17:26,882 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:17:27,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:17:27,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:17:27,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:17:27,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:17:27,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:17:27,214 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:17:27,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b2cd8d +03 二月 2026 | 11:17:28,271 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:17:28,271 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:17:28,271 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:17:28,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:17:28,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:17:28,508 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:17:31,869 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:17:31,897 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:17:31,913 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:17:32,157 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:17:34,657 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:141 +03 二月 2026 | 11:17:38,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:329041 +03 二月 2026 | 11:17:38,449 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:17:38,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:17:38,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:17:38,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:17:38,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:17:39,129 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:17:39,248 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:17:39,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:17:39,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:17:39,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:17:39,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:17:39,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:17:39,725 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7c2c0ea5 +03 二月 2026 | 11:17:40,525 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:17:40,525 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:17:40,525 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:17:40,562 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:17:40,599 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:17:40,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:17:41,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:17:42,272 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:17:42,272 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:17:42,272 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:879974 +03 二月 2026 | 11:17:42,611 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:17:44,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:879974 +03 二月 2026 | 11:17:44,322 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:17:44,528 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:17:44,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:17:44,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:17:44,647 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:17:44,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:17:45,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:17:45,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:17:45,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:17:45,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:17:45,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:17:45,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:17:45,585 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7c2c0ea5 +03 二月 2026 | 11:17:46,380 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:17:46,380 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:17:46,380 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:17:46,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:17:46,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:17:46,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:17:49,973 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:17:50,060 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:17:50,171 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:17:50,171 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:17:50,206 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:17:50,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:17:50,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:17:50,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:879974 +03 二月 2026 | 11:17:51,198 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:17:52,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:879974 +03 二月 2026 | 11:17:53,009 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:17:53,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:17:53,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:17:53,407 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:17:53,712 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=879974, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=3} +03 二月 2026 | 11:17:56,757 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:00,494 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:18:00,530 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:18:00,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:18:00,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:18:00,886 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:18:01,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:18:02,346 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:18:02,346 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:18:02,346 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:402135 +03 二月 2026 | 11:18:02,691 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:18:04,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:402135 +03 二月 2026 | 11:18:04,387 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:04,586 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:04,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:18:04,740 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:18:08,081 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:08,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:08,287 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:08,287 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:11,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:329041 +03 二月 2026 | 11:18:11,578 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:18:11,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:18:11,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:18:11,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:18:11,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:18:12,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:18:12,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:18:12,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:18:12,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:18:12,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:18:12,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:18:12,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:18:12,868 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7c2c0ea5 +03 二月 2026 | 11:18:13,665 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:18:13,665 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:18:13,665 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:18:13,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:18:13,740 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:18:13,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:18:14,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:18:15,392 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:18:15,392 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:18:15,392 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:253795 +03 二月 2026 | 11:18:15,720 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:18:17,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:253795 +03 二月 2026 | 11:18:17,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:17,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:17,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:18:17,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:18:17,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:18:18,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:18:18,220 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:18:18,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:18:18,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:18:18,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:18:18,257 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:18:18,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:18:18,696 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7c2c0ea5 +03 二月 2026 | 11:18:19,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:18:19,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:18:19,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:18:19,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:18:19,593 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:18:19,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:18:23,081 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:23,097 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:18:23,429 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:18:26,977 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:18:27,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:18:27,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:18:27,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:18:27,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:18:28,032 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:18:28,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:18:28,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:18:28,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:903887 +03 二月 2026 | 11:18:29,094 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:18:30,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:903887 +03 二月 2026 | 11:18:30,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:30,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:31,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:18:31,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:18:34,466 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:34,570 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:34,670 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:34,672 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:38,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:253795 +03 二月 2026 | 11:18:38,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:18:38,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:18:38,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:18:38,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:18:38,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:18:39,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:18:39,152 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:18:39,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:18:39,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:18:39,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:18:39,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:18:39,354 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:18:39,617 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b2cd8d +03 二月 2026 | 11:18:40,411 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:18:40,411 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:18:40,411 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:18:40,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:18:40,489 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:18:40,632 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:18:41,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:18:42,110 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:18:42,110 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:18:42,110 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:275590 +03 二月 2026 | 11:18:42,434 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:18:44,084 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:275590 +03 二月 2026 | 11:18:44,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:44,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:44,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:18:44,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:18:44,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:18:44,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:18:44,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:18:44,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:18:44,945 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:18:44,945 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:18:44,945 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:18:45,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:18:45,373 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b2cd8d +03 二月 2026 | 11:18:46,169 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:18:46,169 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:18:46,169 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:18:46,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:18:46,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:18:46,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:18:49,733 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:18:49,753 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:18:50,077 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:18:54,524 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:18:54,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:18:54,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:18:54,900 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:18:54,942 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:18:55,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:18:56,426 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:18:56,426 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:18:56,427 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:797204 +03 二月 2026 | 11:18:56,800 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:18:58,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:797204 +03 二月 2026 | 11:18:58,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:58,864 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:18:58,982 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:18:59,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:19:02,382 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:02,509 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:02,636 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:02,636 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:06,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:19:06,990 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:19:07,208 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:19:07,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:19:07,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:19:07,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:19:07,679 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:19:07,799 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:19:07,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:19:07,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:19:07,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:19:07,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:19:08,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:19:08,274 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@198eff6a +03 二月 2026 | 11:19:09,076 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:19:09,076 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:19:09,076 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:19:09,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:19:09,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:19:09,311 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:19:10,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:19:10,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:19:10,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:19:10,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:793000 +03 二月 2026 | 11:19:11,209 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:19:12,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:793000 +03 二月 2026 | 11:19:13,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:19:13,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:19:13,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:19:13,399 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:19:16,758 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:16,777 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:19:17,145 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:19:21,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:329041 +03 二月 2026 | 11:19:21,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:19:22,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:19:22,196 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:19:22,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:19:22,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:19:23,717 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:19:23,717 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:19:23,719 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:440549 +03 二月 2026 | 11:19:24,090 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:19:25,859 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:440549 +03 二月 2026 | 11:19:25,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:19:26,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:19:26,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:19:26,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:19:29,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:29,780 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:29,906 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:29,906 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:34,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:253795 +03 二月 2026 | 11:19:34,377 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:19:34,582 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:19:34,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:19:34,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:19:34,700 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:19:35,052 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:19:35,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:19:35,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:19:35,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:19:35,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:19:35,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:19:35,379 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:19:35,643 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7c2c0ea5 +03 二月 2026 | 11:19:36,439 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:19:36,439 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:19:36,440 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:19:36,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:19:36,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:19:36,662 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:19:37,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:19:38,163 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:19:38,163 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:19:38,163 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:129726 +03 二月 2026 | 11:19:38,494 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:19:40,217 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:129726 +03 二月 2026 | 11:19:40,253 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:19:40,454 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:19:40,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:19:40,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:19:43,954 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:43,971 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:19:44,306 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:19:49,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:19:49,436 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:19:49,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:19:49,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:19:49,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:19:50,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:19:51,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:19:51,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:19:51,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:759352 +03 二月 2026 | 11:19:51,834 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:19:53,659 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:759352 +03 二月 2026 | 11:19:53,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:19:53,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:19:54,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:19:54,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:19:57,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:57,636 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:57,768 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:19:57,768 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:02,658 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:329041 +03 二月 2026 | 11:20:02,701 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:20:02,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:20:03,035 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:20:03,035 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:20:03,035 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:20:03,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:20:03,504 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:20:03,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:20:03,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:20:03,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:20:03,544 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:20:03,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:20:03,984 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b2cd8d +03 二月 2026 | 11:20:04,774 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:20:04,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:20:04,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:20:04,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:20:04,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:20:05,019 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:20:05,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:20:06,547 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:20:06,547 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:20:06,547 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:657694 +03 二月 2026 | 11:20:06,928 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:20:08,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:657694 +03 二月 2026 | 11:20:08,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:20:09,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:20:09,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:20:09,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:20:12,534 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:12,553 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:20:12,881 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:20:17,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:253795 +03 二月 2026 | 11:20:17,749 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:20:17,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:20:18,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:20:18,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:20:18,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:20:19,553 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:20:19,553 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:20:19,553 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:859687 +03 二月 2026 | 11:20:19,892 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:20:21,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:859687 +03 二月 2026 | 11:20:21,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:20:21,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:20:22,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:20:22,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:20:25,451 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:25,562 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:25,670 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:25,671 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:31,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:20:31,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:20:31,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:20:31,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:20:31,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:20:31,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:20:32,201 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:20:32,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:20:32,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:20:32,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:20:32,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:20:32,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:20:32,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:20:32,823 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@198eff6a +03 二月 2026 | 11:20:33,616 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:20:33,616 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:20:33,616 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:20:33,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:20:33,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:20:33,853 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:20:34,588 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:20:35,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:20:35,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:20:35,359 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:602362 +03 二月 2026 | 11:20:35,721 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:20:37,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:602362 +03 二月 2026 | 11:20:37,504 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:20:37,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:20:37,837 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:20:37,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:20:41,241 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:41,257 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:20:41,591 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:20:47,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:275590 +03 二月 2026 | 11:20:47,551 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:20:47,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:20:47,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:20:47,936 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:20:48,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:20:49,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:20:49,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:20:49,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:920336 +03 二月 2026 | 11:20:49,825 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:20:51,632 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:920336 +03 二月 2026 | 11:20:51,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:20:51,899 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:20:52,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:20:52,065 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:20:55,421 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:55,556 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:55,691 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:20:55,691 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:00,773 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:275590 +03 二月 2026 | 11:21:00,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:21:01,005 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:21:01,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:21:01,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:21:01,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:21:01,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:21:01,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:21:01,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:21:01,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:21:01,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:21:01,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:21:01,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:21:02,072 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7c2c0ea5 +03 二月 2026 | 11:21:02,866 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:21:02,866 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:21:02,866 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:21:02,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:21:02,940 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:21:03,085 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:21:03,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:21:04,558 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:21:04,558 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:21:04,558 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:518807 +03 二月 2026 | 11:21:04,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:21:06,508 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:518807 +03 二月 2026 | 11:21:06,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:21:06,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:21:06,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:21:06,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:21:06,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:21:07,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:21:07,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:21:07,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:21:07,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:21:07,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:21:07,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:21:07,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:21:07,795 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7c2c0ea5 +03 二月 2026 | 11:21:08,591 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:21:08,591 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:21:08,591 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:21:08,628 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:21:08,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:21:08,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:21:12,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:12,304 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:21:12,650 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:21:18,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:518807 +03 二月 2026 | 11:21:18,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:21:19,037 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:21:19,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:21:19,198 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:21:19,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:21:20,663 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:21:20,663 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:21:20,663 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:166072 +03 二月 2026 | 11:21:21,240 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:21:22,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:166072 +03 二月 2026 | 11:21:23,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:21:23,250 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:21:23,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:21:23,412 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:21:26,776 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:26,898 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:27,021 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:27,021 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:30,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:21:30,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:21:31,095 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:21:31,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:21:31,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:21:31,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:21:31,573 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:21:31,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:21:31,736 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:21:31,736 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:21:31,736 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:21:31,736 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:21:31,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:21:32,200 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b2cd8d +03 二月 2026 | 11:21:32,990 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:21:32,990 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:21:32,990 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:21:33,029 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:21:33,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:21:33,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:21:33,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:21:34,753 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:21:34,753 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:21:34,753 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:631613 +03 二月 2026 | 11:21:35,120 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:21:36,886 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:631613 +03 二月 2026 | 11:21:36,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:21:37,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:21:37,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:21:37,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:21:37,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:21:37,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:21:37,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:21:37,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:21:37,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:21:37,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:21:37,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:21:37,942 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:21:38,205 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b2cd8d +03 二月 2026 | 11:21:39,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:21:39,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:21:39,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:21:39,041 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:21:39,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:21:39,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:21:42,592 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:42,617 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:21:42,971 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:21:47,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:518807 +03 二月 2026 | 11:21:47,116 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:21:47,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:21:47,448 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:21:47,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:21:48,186 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:21:48,973 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:21:48,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:21:48,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:454058 +03 二月 2026 | 11:21:49,331 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:21:51,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:454058 +03 二月 2026 | 11:21:51,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:21:51,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:21:51,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:21:51,549 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:21:54,910 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:55,036 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:55,161 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:55,161 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:21:55,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:21:55,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:21:55,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:518807 +03 二月 2026 | 11:21:55,943 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:21:57,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:518807 +03 二月 2026 | 11:21:57,749 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:21:58,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:21:58,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:21:58,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:21:58,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:21:58,476 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:21:58,592 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:21:58,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:21:58,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:21:58,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:21:58,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:21:58,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:21:59,102 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@198eff6a +03 二月 2026 | 11:21:59,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:21:59,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:21:59,884 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:21:59,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:21:59,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:22:00,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:22:00,431 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=518807, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=3} +03 二月 2026 | 11:22:03,471 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:07,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:631613 +03 二月 2026 | 11:22:07,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:22:07,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:22:08,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:22:08,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:22:08,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:22:09,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:22:09,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:22:09,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:271285 +03 二月 2026 | 11:22:09,985 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:22:11,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:271285 +03 二月 2026 | 11:22:11,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:22:12,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:22:12,162 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:22:12,201 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:22:15,555 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:15,676 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:15,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:15,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:15,997 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:22:15,997 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:22:15,997 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:631613 +03 二月 2026 | 11:22:16,400 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:22:18,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:631613 +03 二月 2026 | 11:22:18,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:22:18,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:22:18,829 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:22:18,829 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:22:18,829 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:22:19,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:22:19,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:22:19,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:22:19,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:22:19,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:22:19,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:22:19,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:22:19,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7c2c0ea5 +03 二月 2026 | 11:22:20,571 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:22:20,572 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:22:20,572 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:22:20,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:22:20,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:22:20,887 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:22:21,215 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=631613, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=3} +03 二月 2026 | 11:22:24,258 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:28,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:22:28,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:22:28,489 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:22:28,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:22:28,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:22:28,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:22:28,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:22:29,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:22:29,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:22:29,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:22:29,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:22:29,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:22:29,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:22:29,565 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@198eff6a +03 二月 2026 | 11:22:30,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:22:30,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:22:30,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:22:30,399 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:22:30,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:22:30,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:22:31,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:22:32,187 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:22:32,187 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:22:32,187 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:246783 +03 二月 2026 | 11:22:32,602 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:22:34,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:246783 +03 二月 2026 | 11:22:34,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:22:34,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:22:34,892 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:22:34,945 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:22:38,322 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:38,337 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:22:38,477 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:38,537 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:22:38,627 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:38,627 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:22:42,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:154813 +03 二月 2026 | 11:22:42,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:22:42,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:22:42,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:22:42,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:22:42,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:22:43,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:22:43,412 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:22:43,449 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:22:43,449 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:22:43,449 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:22:43,449 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:22:43,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:22:43,887 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b2cd8d +03 二月 2026 | 11:22:44,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:22:44,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:22:44,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:22:44,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:22:44,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:22:44,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:22:45,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:22:46,459 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:22:46,459 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:22:46,459 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:227452 +03 二月 2026 | 11:22:46,817 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:22:48,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:227452 +03 二月 2026 | 11:22:48,592 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:22:48,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:22:48,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:22:48,924 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:22:48,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:22:49,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:22:49,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:22:49,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:22:49,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:22:49,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:22:49,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:22:49,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:22:49,877 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@73b2cd8d +03 二月 2026 | 11:22:50,687 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:22:50,687 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:22:50,687 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:22:50,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:22:50,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:22:50,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:27:03,592 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:27:03,636 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:27:03,936 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:27:04,169 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:27:08,525 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:11 +03 二月 2026 | 11:27:08,666 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:27:11,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:27:12,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:27:12,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:27:12,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:975764 +03 二月 2026 | 11:27:13,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:27:14,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:975764 +03 二月 2026 | 11:27:14,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:27:15,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:27:15,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:27:15,189 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:27:15,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:27:15,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:27:15,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:27:15,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:27:15,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:27:15,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:27:15,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:27:15,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:27:16,118 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4c982b03 +03 二月 2026 | 11:27:16,821 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:27:16,822 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:27:16,822 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:27:16,864 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:27:16,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:27:17,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:27:20,470 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:27:20,476 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:27:20,529 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:27:20,696 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:27:23,396 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:25 +03 二月 2026 | 11:27:26,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:975764 +03 二月 2026 | 11:27:26,627 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:27:26,837 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:27:26,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:27:26,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:27:26,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:27:27,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:27:27,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:27:27,454 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:27:27,454 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:27:27,454 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:27:27,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:27:27,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:27:27,853 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1e5ded62 +03 二月 2026 | 11:27:28,569 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:27:28,569 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:27:28,569 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:27:28,632 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:27:28,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:27:28,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:27:29,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:27:30,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:27:30,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:27:30,361 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:567903 +03 二月 2026 | 11:27:30,747 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:27:32,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:567903 +03 二月 2026 | 11:27:32,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:27:32,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:27:32,828 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:27:32,828 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:27:32,828 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:27:33,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:27:33,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:27:33,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:27:33,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:27:33,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:27:33,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:27:33,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:27:33,737 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1e5ded62 +03 二月 2026 | 11:27:34,532 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:27:34,532 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:27:34,532 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:27:34,573 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:27:34,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:27:34,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:27:40,260 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:27:40,305 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:27:40,574 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:27:40,795 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:27:45,395 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:12 +03 二月 2026 | 11:27:45,536 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:27:48,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:567903 +03 二月 2026 | 11:27:48,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:27:48,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:27:49,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:27:49,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:27:49,057 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:27:49,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:27:49,753 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:27:49,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:27:49,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:27:49,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:27:49,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:27:49,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:27:50,218 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@8253667 +03 二月 2026 | 11:27:51,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:27:51,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:27:51,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:27:51,057 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:27:51,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:27:51,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:27:52,009 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:27:52,927 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:27:52,927 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:27:52,927 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:772278 +03 二月 2026 | 11:27:53,289 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:27:54,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:772278 +03 二月 2026 | 11:27:54,995 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:27:55,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:27:55,335 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:27:55,335 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:27:55,335 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:27:55,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:27:55,894 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:27:55,932 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:27:55,932 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:27:55,933 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:27:55,933 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:27:56,090 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:27:56,357 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@8253667 +03 二月 2026 | 11:27:57,167 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:27:57,167 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:27:57,167 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:27:57,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:27:57,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:27:57,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:28:00,765 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:28:00,795 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:28:00,800 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:28:01,005 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:28:43,270 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:28:43,316 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:28:43,589 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:28:43,825 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:28:48,739 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:13 +03 二月 2026 | 11:28:48,865 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:28:52,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:772278 +03 二月 2026 | 11:28:52,346 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:28:52,549 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:28:52,652 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:28:52,694 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:28:53,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:28:54,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:28:54,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:28:54,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:371930 +03 二月 2026 | 11:28:54,680 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:28:56,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:371930 +03 二月 2026 | 11:28:56,407 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:28:56,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:28:56,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:28:56,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:29:00,145 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:29:00,188 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:29:02,768 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:26 +03 二月 2026 | 11:29:05,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:772278 +03 二月 2026 | 11:29:05,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:29:06,093 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:29:06,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:29:06,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:29:06,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:29:06,532 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:29:06,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:29:06,679 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:29:06,680 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:29:06,680 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:29:06,680 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:29:06,835 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:29:07,072 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@55c7f30 +03 二月 2026 | 11:29:07,778 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:29:07,778 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:29:07,778 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:29:07,819 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:29:07,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:29:08,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:29:08,687 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:29:09,398 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:29:09,398 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:29:09,398 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:463878 +03 二月 2026 | 11:29:09,711 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:29:11,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:463878 +03 二月 2026 | 11:29:11,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:29:11,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:29:11,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:29:11,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:29:11,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:29:11,941 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:29:12,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:29:12,088 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:29:12,088 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:29:12,088 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:29:12,088 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:29:12,242 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:29:12,475 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@55c7f30 +03 二月 2026 | 11:29:13,182 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:29:13,182 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:29:13,182 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:29:13,223 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:29:13,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:29:13,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:29:16,751 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:29:16,764 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:29:16,786 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:29:17,005 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:29:19,379 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:142 +03 二月 2026 | 11:29:23,112 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:772278 +03 二月 2026 | 11:29:23,146 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:29:23,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:29:23,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:29:23,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:29:23,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:29:23,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:29:23,881 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:29:23,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:29:23,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:29:23,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:29:23,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:29:24,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:29:24,310 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3624a81e +03 二月 2026 | 11:29:25,021 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:29:25,022 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:29:25,022 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:29:25,063 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:29:25,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:29:25,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:29:25,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:29:26,621 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:29:26,622 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:29:26,622 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:305933 +03 二月 2026 | 11:29:26,936 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:29:28,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:305933 +03 二月 2026 | 11:29:28,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:29:28,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:29:28,840 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:29:28,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:29:28,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:29:29,174 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:29:29,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:29:29,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:29:29,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:29:29,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:29:29,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:29:29,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:29:29,718 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3624a81e +03 二月 2026 | 11:29:30,422 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:29:30,422 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:29:30,422 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:29:30,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:29:30,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:29:30,656 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:29:33,996 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:29:34,098 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:29:34,207 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:29:34,207 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:29:34,215 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:29:34,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:29:34,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:29:34,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:305933 +03 二月 2026 | 11:29:35,252 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:29:37,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:305933 +03 二月 2026 | 11:29:37,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:29:37,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:29:37,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:29:37,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:29:37,786 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=305933, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=3} +03 二月 2026 | 11:29:40,821 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:29:44,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:463878 +03 二月 2026 | 11:29:44,442 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:29:44,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:29:44,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:29:44,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:29:45,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:29:46,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:29:46,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:29:46,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:521239 +03 二月 2026 | 11:29:46,525 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:29:48,246 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:521239 +03 二月 2026 | 11:29:48,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:29:48,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:29:48,616 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:29:48,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:29:52,008 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:29:52,136 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:29:52,270 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:29:52,271 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:29:55,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:463878 +03 二月 2026 | 11:29:55,533 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:29:55,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:29:55,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:29:55,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:29:55,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:29:56,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:29:56,301 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:29:56,343 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:29:56,343 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:29:56,343 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:29:56,343 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:29:56,501 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:29:56,734 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3624a81e +03 二月 2026 | 11:29:57,435 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:29:57,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:29:57,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:29:57,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:29:57,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:29:57,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:29:58,345 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:29:59,098 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:29:59,098 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:29:59,098 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:901380 +03 二月 2026 | 11:29:59,409 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:30:00,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:901380 +03 二月 2026 | 11:30:01,006 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:01,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:01,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:30:01,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:30:01,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:30:01,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:30:01,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:30:01,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:30:01,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:30:01,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:30:01,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:30:01,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:30:02,164 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3624a81e +03 二月 2026 | 11:30:02,873 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:30:02,873 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:30:02,873 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:30:02,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:30:02,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:30:03,103 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:30:06,440 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:06,452 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:30:06,757 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:30:10,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:463878 +03 二月 2026 | 11:30:10,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:30:10,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:30:10,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:30:10,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:30:11,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:30:12,355 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:30:12,355 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:30:12,355 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:936317 +03 二月 2026 | 11:30:12,697 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:30:14,377 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:936317 +03 二月 2026 | 11:30:14,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:14,619 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:14,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:30:14,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:30:18,112 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:18,233 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:18,354 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:18,355 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:22,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:901380 +03 二月 2026 | 11:30:22,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:30:22,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:30:22,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:30:22,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:30:22,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:30:23,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:30:23,181 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:30:23,221 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:30:23,221 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:30:23,221 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:30:23,221 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:30:23,387 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:30:23,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@55c7f30 +03 二月 2026 | 11:30:24,341 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:30:24,341 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:30:24,341 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:30:24,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:30:24,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:30:24,591 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:30:25,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:30:26,041 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:30:26,041 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:30:26,041 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:529694 +03 二月 2026 | 11:30:26,405 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:30:28,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:529694 +03 二月 2026 | 11:30:28,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:28,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:28,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:30:28,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:30:28,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:30:28,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:30:28,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:30:28,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:30:28,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:30:28,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:30:28,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:30:29,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:30:29,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@55c7f30 +03 二月 2026 | 11:30:30,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:30:30,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:30:30,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:30:30,088 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:30:30,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:30:30,298 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:30:33,655 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:33,666 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:30:34,046 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:30:38,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:772278 +03 二月 2026 | 11:30:38,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:30:38,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:30:38,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:30:38,683 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:30:39,333 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:30:40,046 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:30:40,046 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:30:40,046 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:469359 +03 二月 2026 | 11:30:40,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:30:42,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:469359 +03 二月 2026 | 11:30:42,136 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:42,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:42,443 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:30:42,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:30:45,850 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:45,972 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:46,096 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:46,096 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:30:49,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:463878 +03 二月 2026 | 11:30:49,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:30:49,680 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:30:49,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:30:49,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:30:49,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:30:50,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:30:50,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:30:50,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:30:50,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:30:50,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:30:50,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:30:50,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:30:50,684 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@334a5f8 +03 二月 2026 | 11:30:51,385 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:30:51,385 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:30:51,385 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:30:51,427 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:30:51,467 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:30:51,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:30:52,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:30:53,054 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:30:53,054 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:30:53,055 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:242907 +03 二月 2026 | 11:30:53,404 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:30:55,057 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:242907 +03 二月 2026 | 11:30:55,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:55,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:30:55,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:30:55,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:30:55,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:30:55,740 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:30:55,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:30:55,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:30:55,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:30:55,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:30:55,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:30:56,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:30:56,278 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@334a5f8 +03 二月 2026 | 11:30:56,989 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:30:56,989 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:30:56,989 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:30:57,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:30:57,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:30:57,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:31:00,582 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:00,589 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:31:00,902 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:31:04,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:242907 +03 二月 2026 | 11:31:04,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:31:04,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:31:04,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:31:05,000 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:31:05,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:31:06,344 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:31:06,344 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:31:06,344 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:299970 +03 二月 2026 | 11:31:06,674 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:31:08,322 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:299970 +03 二月 2026 | 11:31:08,360 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:31:08,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:31:08,656 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:31:08,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:31:12,071 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:12,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:12,294 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:12,294 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:12,555 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:31:12,555 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:31:12,555 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:529694 +03 二月 2026 | 11:31:13,064 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:31:14,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:529694 +03 二月 2026 | 11:31:14,862 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:31:15,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:31:15,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:31:15,188 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:31:15,188 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:31:15,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:31:15,680 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:31:15,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:31:15,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:31:15,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:31:15,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:31:15,880 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:31:16,133 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3624a81e +03 二月 2026 | 11:31:16,892 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:31:16,892 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:31:16,892 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:31:16,933 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:31:16,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:31:17,139 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:31:17,467 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=529694, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:31:20,502 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:23,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:242907 +03 二月 2026 | 11:31:23,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:31:24,028 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:31:24,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:31:24,169 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:31:24,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:31:25,542 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:31:25,542 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:31:25,542 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:328631 +03 二月 2026 | 11:31:25,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:31:27,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:328631 +03 二月 2026 | 11:31:27,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:31:27,754 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:31:27,858 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:31:27,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:31:31,243 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:31,357 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:31,472 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:31,472 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:34,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:242907 +03 二月 2026 | 11:31:34,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:31:34,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:31:34,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:31:34,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:31:34,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:31:35,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:31:35,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:31:35,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:31:35,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:31:35,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:31:35,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:31:35,506 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:31:35,742 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@55c7f30 +03 二月 2026 | 11:31:36,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:31:36,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:31:36,449 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:31:36,489 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:31:36,532 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:31:36,697 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:31:37,396 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:31:38,112 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:31:38,112 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:31:38,112 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:868547 +03 二月 2026 | 11:31:38,452 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:31:40,091 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:868547 +03 二月 2026 | 11:31:40,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:31:40,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:31:40,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:31:40,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:31:40,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:31:40,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:31:40,866 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:31:40,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:31:40,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:31:40,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:31:40,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:31:41,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:31:41,305 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@55c7f30 +03 二月 2026 | 11:31:42,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:31:42,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:31:42,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:31:42,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:31:42,109 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:31:42,272 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:31:45,621 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:31:45,636 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:31:46,003 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:31:49,444 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:868547 +03 二月 2026 | 11:31:49,487 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:31:49,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:31:49,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:31:49,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:31:49,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:31:50,129 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:31:50,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:31:50,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:31:50,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:31:50,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:31:50,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:31:50,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:31:50,678 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3624a81e +03 二月 2026 | 11:31:51,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:31:51,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:31:51,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:31:51,424 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:31:51,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:31:51,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:31:52,329 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:31:53,051 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:31:53,051 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:31:53,051 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:503054 +03 二月 2026 | 11:31:53,409 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:31:55,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:503054 +03 二月 2026 | 11:31:55,129 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:31:55,337 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:31:55,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:31:55,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:31:55,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:31:55,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:31:55,885 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:31:55,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:31:55,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:31:55,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:31:55,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:31:56,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:31:56,323 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3624a81e +03 二月 2026 | 11:31:57,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:31:57,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:31:57,027 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:31:57,068 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:31:57,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:31:57,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:32:00,637 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:00,657 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:32:00,766 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:00,877 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:32:00,897 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:00,897 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:01,316 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:32:01,316 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:32:01,316 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:503054 +03 二月 2026 | 11:32:01,772 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:32:03,506 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:503054 +03 二月 2026 | 11:32:03,546 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:32:03,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:32:03,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:32:03,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:32:03,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:32:04,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:32:04,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:32:04,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:32:04,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:32:04,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:32:04,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:32:04,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:32:04,826 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@334a5f8 +03 二月 2026 | 11:32:05,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:32:05,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:32:05,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:32:05,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:32:05,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:32:05,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:32:06,160 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=503054, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:32:09,196 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:09,221 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:32:09,548 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:32:13,740 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:868547 +03 二月 2026 | 11:32:13,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:32:13,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:32:14,091 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:32:14,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:32:14,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:32:15,511 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:32:15,512 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:32:15,512 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:458761 +03 二月 2026 | 11:32:15,866 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:32:17,562 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:458761 +03 二月 2026 | 11:32:17,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:32:17,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:32:17,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:32:17,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:32:21,304 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:21,429 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:21,557 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:21,557 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:21,836 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:32:21,836 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:32:21,836 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:868547 +03 二月 2026 | 11:32:22,223 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:32:24,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:868547 +03 二月 2026 | 11:32:24,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:32:24,433 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:32:24,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:32:24,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:32:24,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:32:24,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:32:25,060 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:32:25,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:32:25,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:32:25,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:32:25,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:32:25,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:32:25,520 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3624a81e +03 二月 2026 | 11:32:26,287 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:32:26,288 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:32:26,288 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:32:26,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:32:26,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:32:26,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:32:26,874 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=868547, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:32:29,917 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:29,936 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:32:30,390 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:32:34,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:503054 +03 二月 2026 | 11:32:34,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:32:34,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:32:34,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:32:34,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:32:35,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:32:36,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:32:36,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:32:36,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:364669 +03 二月 2026 | 11:32:36,579 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:32:38,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:364669 +03 二月 2026 | 11:32:38,231 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:32:38,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:32:38,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:32:38,567 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:32:41,907 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:42,016 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:42,125 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:42,126 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:42,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:32:42,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:32:42,387 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:503054 +03 二月 2026 | 11:32:42,735 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:32:44,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:503054 +03 二月 2026 | 11:32:44,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:32:44,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:32:44,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:32:44,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:32:44,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:32:45,137 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:32:45,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:32:45,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:32:45,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:32:45,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:32:45,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:32:45,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:32:45,708 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@55c7f30 +03 二月 2026 | 11:32:46,468 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:32:46,468 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:32:46,468 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:32:46,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:32:46,551 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:32:46,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:32:47,030 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=503054, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:32:50,066 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:32:50,081 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:32:50,383 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:32:55,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:242907 +03 二月 2026 | 11:32:55,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:32:55,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:32:55,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:32:55,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:32:56,133 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:32:56,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:32:56,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:32:56,854 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:350235 +03 二月 2026 | 11:32:57,208 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:32:58,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:350235 +03 二月 2026 | 11:32:58,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:32:59,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:32:59,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:32:59,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:33:02,657 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:02,782 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:02,908 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:02,908 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:03,173 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:33:03,173 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:33:03,173 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:868547 +03 二月 2026 | 11:33:03,579 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:33:05,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:868547 +03 二月 2026 | 11:33:05,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:33:05,629 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:33:05,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:33:05,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:33:05,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:33:06,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:33:06,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:33:06,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:33:06,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:33:06,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:33:06,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:33:06,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:33:06,760 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@334a5f8 +03 二月 2026 | 11:33:07,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:33:07,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:33:07,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:33:07,564 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:33:07,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:33:07,778 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:33:08,119 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=868547, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:33:11,156 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:11,172 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:33:11,527 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:33:16,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:242907 +03 二月 2026 | 11:33:16,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:33:16,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:33:16,540 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:33:16,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:33:17,228 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:33:17,945 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:33:17,945 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:33:17,945 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:419545 +03 二月 2026 | 11:33:18,281 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:33:19,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:419545 +03 二月 2026 | 11:33:19,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:33:20,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:33:20,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:33:20,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:33:23,653 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:23,773 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:23,892 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:23,892 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:24,155 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:33:24,156 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:33:24,156 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:503054 +03 二月 2026 | 11:33:24,500 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:33:26,217 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:503054 +03 二月 2026 | 11:33:26,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:33:26,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:33:26,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:33:26,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:33:26,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:33:26,945 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:33:27,068 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:33:27,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:33:27,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:33:27,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:33:27,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:33:27,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:33:27,513 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3624a81e +03 二月 2026 | 11:33:28,276 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:33:28,276 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:33:28,276 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:33:28,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:33:28,358 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:33:28,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:33:28,830 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=503054, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:33:31,867 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:33:31,879 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:33:32,111 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:33:38,162 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:503054 +03 二月 2026 | 11:33:38,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:33:38,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 3, 1, svr8840, 10, 18, 670680, 2, 0, 1, [907904]] +03 二月 2026 | 11:33:38,573 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:33:38,620 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:33:39,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:33:40,040 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:33:40,040 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:33:40,040 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:685183 +03 二月 2026 | 11:33:40,427 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:46:26,666 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:46:26,717 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:46:26,998 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:46:27,244 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:46:31,632 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:14 +03 二月 2026 | 11:46:31,779 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:46:36,807 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:242907 +03 二月 2026 | 11:46:36,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:46:37,041 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:46:37,165 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:46:37,165 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:46:37,165 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:46:37,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:46:37,779 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:46:37,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:46:37,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:3000000 +03 二月 2026 | 11:46:37,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:46:37,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:46:37,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:46:38,231 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1d83c54 +03 二月 2026 | 11:46:39,012 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:46:39,013 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:46:39,013 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:46:39,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:46:39,098 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:46:39,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:46:39,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:46:40,880 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:46:40,880 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:46:40,880 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:452920 +03 二月 2026 | 11:46:41,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:46:43,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:452920 +03 二月 2026 | 11:46:43,076 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:46:43,262 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:46:43,386 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:46:43,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:46:46,806 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:46:46,836 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 11:46:46,847 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:46:47,037 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:46:49,659 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:27 +03 二月 2026 | 11:46:54,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:242907 +03 二月 2026 | 11:46:55,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:46:55,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 11:46:55,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:46:55,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:46:55,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:46:55,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:46:55,834 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:46:55,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:46:55,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:46:55,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:46:55,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:46:56,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:46:56,284 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@617b04fa +03 二月 2026 | 11:46:57,197 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:46:57,198 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:46:57,198 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:46:57,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:46:57,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:46:57,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:46:58,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:46:59,006 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:46:59,006 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:46:59,008 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:101372 +03 二月 2026 | 11:46:59,382 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:47:01,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:101372 +03 二月 2026 | 11:47:01,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:47:01,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:47:01,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:47:01,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:47:01,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:47:01,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:47:01,936 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:47:01,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:47:01,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:47:01,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:47:01,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:47:02,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:47:02,371 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@617b04fa +03 二月 2026 | 11:47:03,115 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:47:03,116 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:47:03,116 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:47:03,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:47:03,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:47:03,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:47:06,751 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:47:06,761 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:47:06,793 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:47:06,985 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:47:09,664 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:143 +03 二月 2026 | 11:47:15,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:101372 +03 二月 2026 | 11:47:15,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:47:15,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:47:16,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:47:16,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:47:16,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:47:16,394 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:47:16,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:47:16,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:47:16,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:47:16,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:47:16,561 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:47:16,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:47:16,958 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@16081e51 +03 二月 2026 | 11:47:17,704 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:47:17,705 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:47:17,705 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:47:17,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:47:17,788 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:47:17,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:47:18,818 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:47:19,581 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:47:19,581 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:47:19,581 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:47:19,967 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:47:21,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:47:21,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:47:21,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:47:22,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:47:22,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:47:22,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:47:22,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:47:22,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:47:22,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:47:22,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:47:22,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:47:22,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:47:22,748 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:47:23,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@16081e51 +03 二月 2026 | 11:47:23,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:47:23,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:47:23,757 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:47:23,799 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:47:23,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:47:24,010 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:47:27,401 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 11:47:27,514 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:27,652 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:27,656 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:47:27,657 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:28,171 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:47:28,172 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:47:28,172 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:47:28,798 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:47:30,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:47:30,650 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:47:30,838 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:47:30,966 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:47:31,009 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:47:31,346 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:47:34,388 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:34,888 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:47:34,888 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:47:34,889 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:47:35,237 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:47:36,948 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:47:36,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:47:37,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:47:37,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:47:37,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:47:37,649 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:47:40,197 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.246, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=621351300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 11:47:40,693 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:40,802 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:40,910 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:40,910 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:41,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:47:41,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:47:41,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:101372 +03 二月 2026 | 11:47:41,738 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:47:43,397 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:101372 +03 二月 2026 | 11:47:43,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 11:47:43,604 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 11:47:43,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:47:43,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:47:43,731 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:47:44,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:47:44,242 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:47:44,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:47:44,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8639000 +03 二月 2026 | 11:47:44,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:47:44,284 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:47:44,423 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:47:44,672 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@16081e51 +03 二月 2026 | 11:47:45,432 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:47:45,432 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:47:45,432 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:47:45,473 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:47:45,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:47:45,666 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:47:45,995 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=101372, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:47:49,038 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:49,072 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=907904} +03 二月 2026 | 11:47:49,425 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:47:49,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:47:49,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:47:49,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:47:49,649 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 11:47:49,738 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@71e8b4b5 +03 二月 2026 | 11:47:49,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 101, 109, 104, 203, 102, 204, 108, 207, 206, 108, 103, 204, 101] +03 二月 2026 | 11:47:49,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 11:47:49,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 11:47:49,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 11:47:49,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 11:47:49,865 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:47:51,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:47:51,616 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:47:51,662 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.244, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eogVxE1nPJ2bkxic10ZIltDWk4V2a789ccB0a4pGxicdO11pMOP7oUA5Dibpdib3p0vWMibp34xpAicXQmg/132, entrust=false, nick=敬你是条狗, seat=2, ready=0, hp_info={cur_hp=4309000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=177475} +03 二月 2026 | 11:47:51,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:47:51,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:47:51,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:47:52,272 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:47:52,717 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=177475} +03 二月 2026 | 11:47:52,837 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:47:53,070 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 11:47:53,164 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@71e8b4b5 +03 二月 2026 | 11:47:55,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:55,540 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:55,669 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:55,670 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:55,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:47:56,014 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:47:56,015 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:47:56,015 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:47:56,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:47:58,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:47:58,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:47:58,638 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:47:58,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:47:58,809 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:47:59,139 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:48:02,182 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:02,302 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:02,422 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:02,423 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:02,752 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:48:02,752 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:48:02,752 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:48:03,135 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:48:04,908 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:48:04,949 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:05,137 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:05,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:48:05,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:48:05,648 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:48:08,690 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:08,817 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:08,943 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:08,943 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:09,069 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:09,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:48:09,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:48:09,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:48:09,729 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:48:11,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:48:11,438 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:11,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:11,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:48:11,773 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:48:12,095 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:48:14,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 101, 104, 203, 102, 204, 108, 207, 206, 108, 103, 204, 101, 201, 103, 207, 204, 108, 101, 104, 202, 205, 107, 107, 107, 101, 204] +03 二月 2026 | 11:48:14,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 11:48:14,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 11:48:14,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 11:48:14,662 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 109] +03 二月 2026 | 11:48:15,138 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:15,240 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:15,343 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:15,343 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:15,532 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:48:15,532 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:48:15,532 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:48:15,874 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:48:17,559 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:48:17,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:17,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:17,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:48:17,926 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:48:18,244 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:48:21,287 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:21,388 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:21,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:21,489 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:21,592 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:21,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:48:21,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:48:21,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:48:22,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:48:23,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:48:24,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:24,195 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:24,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:48:24,359 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:48:24,684 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:48:27,726 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:27,838 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:27,912 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 101, 104, 203, 102, 204, 108, 207, 206, 108, 103, 204, 101, 201, 103, 207, 204, 108, 101, 104, 202, 205, 107, 107, 101, 204, 204] +03 二月 2026 | 11:48:27,912 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 11:48:27,912 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 11:48:27,912 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 11:48:27,912 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 109] +03 二月 2026 | 11:48:27,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:27,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:28,152 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:48:28,152 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:48:28,152 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:48:28,483 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:48:30,269 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:48:30,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:30,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:30,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:48:30,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:48:30,957 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:48:33,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:34,100 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:34,200 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:34,200 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:34,302 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:34,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:48:34,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:48:34,625 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:48:35,036 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:48:36,904 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:48:36,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:37,150 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:37,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:48:37,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:48:37,671 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:48:40,714 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:40,853 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:40,990 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:40,990 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:41,334 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:48:41,334 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:48:41,334 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:48:41,717 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:48:43,494 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:48:43,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:43,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:43,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:48:43,896 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:48:44,237 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:48:47,277 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:47,404 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:47,532 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:47,532 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:47,664 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:47,996 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:48:47,996 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:48:47,996 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:48:48,331 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:48:50,045 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:48:50,079 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:50,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:50,380 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:48:50,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:48:50,735 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:48:53,776 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:53,878 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:53,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:53,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:48:54,276 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:48:54,276 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:48:54,276 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:48:54,665 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:48:56,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:48:56,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:56,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:48:56,846 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:48:56,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:48:57,223 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:49:00,266 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:00,393 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:00,522 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:00,522 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:05,392 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:49:05,438 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:49:05,705 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:49:05,955 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:49:09,973 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:15 +03 二月 2026 | 11:49:10,115 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:49:10,412 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:49:10,412 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:49:10,412 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:49:10,882 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:49:13,028 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:49:13,063 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:49:13,249 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:49:13,374 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:49:13,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:49:13,744 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:49:16,791 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:49:16,825 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:49:19,607 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:28 +03 二月 2026 | 11:49:20,008 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:49:20,008 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:49:20,008 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:963181 +03 二月 2026 | 11:49:20,422 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:49:22,270 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:49:22,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:49:22,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:49:22,662 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:49:22,662 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:49:22,662 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:49:23,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:49:23,291 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:49:23,338 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:49:23,338 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2999000 +03 二月 2026 | 11:49:23,338 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:49:23,338 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:49:23,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:49:23,733 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79e53c08 +03 二月 2026 | 11:49:24,421 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:49:24,421 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:49:24,421 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:49:24,466 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:49:24,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:49:24,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:49:25,062 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=963181, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:49:28,108 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:49:28,114 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 11:49:28,157 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:49:28,431 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 11:49:30,755 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:144 +03 二月 2026 | 11:49:35,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:49:35,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:49:35,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:49:36,117 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:49:36,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:49:36,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:49:37,786 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:49:37,786 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:49:37,786 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:252968 +03 二月 2026 | 11:49:38,138 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:49:39,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:252968 +03 二月 2026 | 11:49:39,815 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:49:40,003 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:49:40,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:49:40,168 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:49:43,620 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:43,695 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:43,695 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:43,769 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:43,842 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:43,842 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:43,917 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:43,992 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:43,992 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,067 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,142 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,142 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,215 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,288 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,289 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,363 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,437 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,437 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,513 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,587 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,587 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,660 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,737 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,738 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,813 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,886 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,886 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:44,960 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,034 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,034 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,108 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,182 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,183 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,257 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,331 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,332 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,406 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:45,480 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:47,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:47,779 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:47,853 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:50,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:50,778 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:50,852 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:53,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:53,779 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:53,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:49:54,299 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[109] +03 二月 2026 | 11:49:54,299 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 11:49:54,299 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 11:49:54,299 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 11:49:54,299 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 209, 209, 202, 106, 109, 103, 106, 205, 206, 105, 103] +03 二月 2026 | 11:49:58,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:49:58,592 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:49:58,775 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:49:58,903 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:49:58,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:49:59,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:50:00,368 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:50:00,368 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:50:00,368 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:763382 +03 二月 2026 | 11:50:00,709 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:50:02,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:763382 +03 二月 2026 | 11:50:02,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:50:02,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:50:02,658 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:50:02,691 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:50:06,067 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,134 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,204 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,205 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,273 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,340 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,340 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,407 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,473 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,473 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,540 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:06,607 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:08,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:08,775 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:08,843 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:11,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:11,772 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:11,839 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:14,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:14,771 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:14,839 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:17,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:17,772 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:17,841 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:23,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:50:23,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:50:23,450 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 11:50:23,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:50:23,617 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:50:24,330 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:50:25,113 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:50:25,113 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:50:25,113 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:526648 +03 二月 2026 | 11:50:25,484 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:50:27,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:526648 +03 二月 2026 | 11:50:27,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:50:27,427 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:50:27,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:50:27,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:50:30,983 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,063 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,144 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,224 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,307 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,307 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,388 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,469 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,469 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,550 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:31,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:32,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:32,785 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:32,867 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:35,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:35,786 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:35,868 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:38,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:38,787 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:38,868 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:41,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:41,785 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:41,865 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:48,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:963181 +03 二月 2026 | 11:50:48,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [132788,112233]] +03 二月 2026 | 11:50:48,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [132788,112233]] +03 二月 2026 | 11:50:48,668 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:50:48,668 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:50:48,668 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{670680}:m907904 room_key:room:963181 +03 二月 2026 | 11:50:48,668 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room open close:g{670680}:m907904 room_key:room:963181 +03 二月 2026 | 11:50:48,668 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:50:49,063 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:50:49,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:50:49,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:50:49,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8273000 +03 二月 2026 | 11:50:49,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:50:49,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:50:49,398 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:50:49,634 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@29caecfa +03 二月 2026 | 11:50:50,340 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:50:50,341 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:50:50,341 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:50:50,387 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:50:50,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:50:50,614 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:50:51,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:50:52,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:50:52,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:50:52,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:860863 +03 二月 2026 | 11:50:52,574 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:50:54,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:860863 +03 二月 2026 | 11:50:54,377 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:50:54,583 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:50:54,712 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:50:54,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:50:56,054 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:50:58,258 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,350 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,350 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,443 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,538 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,538 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,631 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,724 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,724 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,816 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,907 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:58,907 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:59,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:59,094 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:59,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:59,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:50:59,892 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:02,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:02,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:02,887 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:05,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:05,797 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:05,888 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:08,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:08,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:08,887 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:14,093 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:860863 +03 二月 2026 | 11:51:14,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:51:14,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:51:14,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:51:14,495 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:51:15,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:51:15,975 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:51:15,975 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:51:15,975 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:111303 +03 二月 2026 | 11:51:16,057 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:51:16,336 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:51:18,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:111303 +03 二月 2026 | 11:51:18,049 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:51:18,240 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:51:18,368 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:51:18,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:51:21,868 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:21,945 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:21,945 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:22,020 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:22,096 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:22,096 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:22,171 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:22,248 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:22,248 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:22,323 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:22,399 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:23,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:23,781 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:23,857 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:26,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:26,781 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:26,857 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:29,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:29,780 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:29,858 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:32,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:32,783 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:32,862 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:38,875 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:860863 +03 二月 2026 | 11:51:38,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:51:39,119 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:51:39,246 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:51:39,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:51:39,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:51:40,784 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:51:40,784 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:51:40,784 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:793266 +03 二月 2026 | 11:51:41,165 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:51:42,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:793266 +03 二月 2026 | 11:51:42,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:51:43,128 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:51:43,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:51:43,298 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:51:46,064 | ERROR | Thread-38 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:51:46,771 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:46,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:46,856 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:46,942 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,027 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,027 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,112 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,198 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,198 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,282 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,367 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,789 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:47,874 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:50,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:50,789 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:50,874 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:53,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:53,790 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:53,877 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:56,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:56,787 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:51:56,872 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:03,048 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:860863 +03 二月 2026 | 11:52:03,090 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:03,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:03,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:52:03,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:52:04,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:52:04,957 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:52:04,957 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:52:04,957 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:528412 +03 二月 2026 | 11:52:05,337 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:52:06,074 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:52:07,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:528412 +03 二月 2026 | 11:52:07,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:07,282 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:07,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:52:07,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:52:10,926 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,012 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,012 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,098 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,186 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,186 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,271 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,355 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,355 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,438 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,521 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,787 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:11,871 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:14,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:14,789 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:14,877 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:17,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:17,788 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:17,873 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:20,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:20,789 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:20,875 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:36,080 | ERROR | Thread-42 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:52:36,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:860863 +03 二月 2026 | 11:52:36,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:36,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:36,997 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:52:37,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:52:37,679 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:52:38,394 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:52:38,394 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:52:38,394 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:886285 +03 二月 2026 | 11:52:38,724 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:52:40,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:52:40,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:40,508 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:40,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:52:40,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:52:44,072 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,146 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,221 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,296 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,296 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,370 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,446 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,447 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,522 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,598 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,598 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,673 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,747 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,747 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,825 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,899 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,900 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:44,976 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:45,050 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:45,051 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:45,126 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:45,200 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:47,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:47,780 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:47,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:50,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:50,779 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:50,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:53,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:53,780 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:53,855 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:52:59,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:52:59,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:59,740 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:52:59,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:52:59,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:53:00,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:53:01,218 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:53:01,218 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:53:01,218 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:746455 +03 二月 2026 | 11:53:01,537 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:53:03,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:746455 +03 二月 2026 | 11:53:03,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:03,346 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:03,451 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:53:03,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:53:06,092 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:53:06,909 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:06,979 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:06,980 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:07,050 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:07,120 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:07,120 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:07,190 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:07,260 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:07,261 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:07,331 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:07,402 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:08,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:08,775 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:08,845 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:11,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:11,774 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:11,848 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:14,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:14,776 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:14,851 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:17,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:17,775 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:17,845 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:24,219 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:53:24,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:24,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:24,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:53:24,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:53:25,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:53:25,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:53:25,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:53:25,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:247510 +03 二月 2026 | 11:53:26,091 | ERROR | Thread-46 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:53:26,312 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:53:27,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:247510 +03 二月 2026 | 11:53:27,978 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:28,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:28,282 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:53:28,322 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:53:31,763 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:31,841 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:31,841 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:31,919 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:31,998 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:31,999 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:32,077 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:32,155 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:32,155 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:32,234 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:32,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:32,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:32,782 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:32,859 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:35,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:35,782 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:35,859 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:38,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:38,782 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:38,859 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:41,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:41,782 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:41,860 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:48,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:53:48,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:49,027 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:49,128 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:53:49,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:53:49,830 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:53:50,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:53:50,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:53:50,563 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:620461 +03 二月 2026 | 11:53:50,919 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:53:52,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:620461 +03 二月 2026 | 11:53:52,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:52,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:53:52,914 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:53:52,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:53:56,101 | ERROR | Thread-48 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:53:56,405 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:56,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:56,490 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:56,575 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:56,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:56,662 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:56,747 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:56,833 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:56,833 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:56,918 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:57,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:57,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:57,088 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:57,173 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:59,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:59,793 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:53:59,878 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:02,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:02,788 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:02,873 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:05,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:05,789 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:05,875 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:12,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:54:12,048 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:54:12,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:54:12,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:54:12,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:54:12,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:54:13,697 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:54:13,697 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:54:13,697 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:259064 +03 二月 2026 | 11:54:14,006 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:54:15,551 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:259064 +03 二月 2026 | 11:54:15,586 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:54:15,771 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:54:15,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:54:15,906 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:54:16,109 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:54:19,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,388 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,389 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,460 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,530 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,530 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,598 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,668 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,668 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,738 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:19,808 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:20,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:20,775 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:20,844 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:23,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:23,773 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:23,842 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:26,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:26,786 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:26,857 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:29,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:29,775 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:29,844 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:36,117 | ERROR | Thread-53 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:54:36,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:54:36,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:54:36,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:54:37,035 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:54:37,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:54:37,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:54:38,435 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:54:38,435 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:54:38,436 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:715175 +03 二月 2026 | 11:54:38,766 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:54:40,359 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:715175 +03 二月 2026 | 11:54:40,396 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:54:40,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:54:40,691 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 11:54:40,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:54:44,167 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,243 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,243 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,317 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,393 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,393 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,467 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,542 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,542 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,617 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,693 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,782 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:44,858 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:47,705 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:47,781 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:47,857 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:50,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:50,779 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:50,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:53,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:53,780 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:54:53,854 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:02,096 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:55:02,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:02,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:02,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:55:02,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:55:02,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:55:02,793 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:55:02,896 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:55:02,941 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:55:02,941 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8273000 +03 二月 2026 | 11:55:02,941 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:55:02,941 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:55:03,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:55:03,308 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@29caecfa +03 二月 2026 | 11:55:03,931 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:55:03,931 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:55:03,931 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:55:03,977 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:55:04,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:55:04,206 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:55:04,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:55:05,660 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:55:05,660 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:55:05,660 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:548145 +03 二月 2026 | 11:55:06,038 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:55:06,124 | ERROR | Thread-55 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:55:07,689 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:548145 +03 二月 2026 | 11:55:07,737 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:07,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:08,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:55:08,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:55:08,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:55:08,389 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:55:08,491 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:55:08,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:55:08,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8273000 +03 二月 2026 | 11:55:08,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:55:08,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:55:08,696 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:55:08,903 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@29caecfa +03 二月 2026 | 11:55:09,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:55:09,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:55:09,524 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:55:09,570 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:55:09,616 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:55:09,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:55:13,266 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,358 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,358 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,450 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,542 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,542 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,634 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,728 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,728 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,820 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,912 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:13,913 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:14,004 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:14,096 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:14,096 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:14,188 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:14,280 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:14,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:14,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:14,889 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:17,704 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:17,796 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:17,888 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 11:55:22,283 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:55:22,326 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:55:22,615 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:55:22,860 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:55:27,160 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:16 +03 二月 2026 | 11:55:27,287 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:55:35,792 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:55:35,838 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:36,042 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:36,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:55:36,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:55:36,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:55:36,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:55:36,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:55:36,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:55:36,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:55:36,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:55:36,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:55:36,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:55:37,146 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@bf175a +03 二月 2026 | 11:55:37,813 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:55:37,815 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:55:37,815 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:55:37,853 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:55:37,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:55:38,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:55:38,773 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:55:39,623 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:55:39,623 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:55:39,623 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:113320 +03 二月 2026 | 11:55:39,993 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:55:41,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:113320 +03 二月 2026 | 11:55:41,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:41,857 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:41,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:55:41,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:55:41,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:55:42,310 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:55:42,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:55:42,460 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:55:42,460 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:55:42,460 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:55:42,461 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:55:42,624 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:55:42,848 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@bf175a +03 二月 2026 | 11:55:43,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:55:43,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:55:43,516 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:55:43,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:55:43,591 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:55:43,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:55:46,139 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:55:46,152 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:55:47,111 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:55:47,154 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:55:50,040 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:29 +03 二月 2026 | 11:55:50,181 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:55:58,062 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:55:58,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:58,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:55:58,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:55:58,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:55:58,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:55:58,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:55:58,881 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:55:58,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:55:58,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 11:55:58,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:55:58,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:55:59,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:55:59,298 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@379313c1 +03 二月 2026 | 11:55:59,970 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:55:59,971 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:55:59,971 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:56:00,010 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:56:00,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:56:00,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:56:00,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:56:01,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:56:01,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:56:01,624 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:525725 +03 二月 2026 | 11:56:01,969 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:56:03,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:525725 +03 二月 2026 | 11:56:03,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:56:03,765 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:56:03,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:56:03,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:56:03,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:56:04,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:56:04,325 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:56:04,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:56:04,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 11:56:04,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:56:04,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:56:04,523 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:56:04,746 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@379313c1 +03 二月 2026 | 11:56:05,418 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:56:05,418 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:56:05,418 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:56:05,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:56:05,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:56:05,650 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:56:08,997 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:56:09,035 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:56:11,426 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:145 +03 二月 2026 | 11:56:11,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:56:16,143 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:56:16,154 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:56:18,982 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:56:19,018 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:56:19,213 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:56:19,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:56:19,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:56:19,327 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:56:19,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:56:19,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:56:19,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:56:19,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8273000 +03 二月 2026 | 11:56:19,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:56:19,814 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:56:19,969 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:56:20,189 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5fade8e8 +03 二月 2026 | 11:56:20,856 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:56:20,856 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:56:20,856 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:56:20,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:56:20,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:56:21,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:56:21,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:56:22,469 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:56:22,469 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:56:22,469 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:457770 +03 二月 2026 | 11:56:22,803 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:56:24,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:457770 +03 二月 2026 | 11:56:24,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:56:24,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:56:24,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:56:24,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:56:24,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:56:25,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:56:25,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:56:25,163 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:56:25,163 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8273000 +03 二月 2026 | 11:56:25,163 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:56:25,163 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:56:25,322 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:56:25,546 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5fade8e8 +03 二月 2026 | 11:56:26,213 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:56:26,213 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:56:26,213 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:56:26,250 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:56:26,288 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:56:26,434 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:56:30,024 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:56:30,024 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:56:30,024 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:886285 +03 二月 2026 | 11:56:30,494 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:56:32,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:56:32,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 11:56:32,370 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 11:56:32,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:56:32,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:56:32,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:56:32,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:56:32,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:56:32,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:56:32,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:56:32,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:56:32,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:56:33,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:56:33,298 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@bf175a +03 二月 2026 | 11:56:33,928 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:56:33,929 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:56:33,929 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:56:33,967 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:56:34,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:56:34,162 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:56:34,463 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=886285, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 11:56:35,899 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:56:35,903 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:56:45,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:56:45,804 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 11:56:46,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 11:56:46,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:56:46,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:56:46,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:56:46,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:56:46,568 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:56:46,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:56:46,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:56:46,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:56:46,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:56:46,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:56:46,992 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@bf175a +03 二月 2026 | 11:56:47,659 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:56:47,659 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:56:47,659 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:56:47,697 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:56:47,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:56:47,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:56:48,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:56:49,308 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:56:49,308 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:56:49,308 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:955211 +03 二月 2026 | 11:56:49,661 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:56:56,233 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 11:56:56,277 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 11:56:56,551 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 11:56:56,770 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:57:01,450 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:17 +03 二月 2026 | 11:57:01,589 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:57:11,491 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:57:11,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:57:11,762 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:57:11,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:57:11,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:57:11,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:57:12,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:57:12,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:57:12,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:57:12,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:57:12,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:57:12,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:57:12,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:57:12,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1b6f5771 +03 二月 2026 | 11:57:13,710 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:57:13,712 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:57:13,712 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:57:13,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:57:13,791 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:57:13,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:57:14,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:57:15,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:57:15,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:57:15,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:639326 +03 二月 2026 | 11:57:16,028 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:57:17,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:639326 +03 二月 2026 | 11:57:17,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:57:18,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:57:18,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:57:18,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:57:18,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:57:18,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:57:18,616 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:57:18,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:57:18,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:57:18,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:57:18,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:57:18,850 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:57:19,100 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1b6f5771 +03 二月 2026 | 11:57:19,855 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:57:19,856 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:57:19,856 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:57:19,895 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:57:19,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:57:20,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:57:23,468 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 11:57:23,512 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:57:25,913 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:57:25,922 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:57:26,048 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:30 +03 二月 2026 | 11:57:26,179 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:57:33,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:57:33,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:57:34,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:57:34,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:57:34,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:57:34,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:57:34,670 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:57:34,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:57:34,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:57:34,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 11:57:34,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:57:34,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:57:34,999 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:57:35,252 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@42c23d3b +03 二月 2026 | 11:57:36,013 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:57:36,014 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:57:36,014 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:57:36,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:57:36,093 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:57:36,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:57:36,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:57:37,733 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:57:37,733 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:57:37,733 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:470218 +03 二月 2026 | 11:57:38,055 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:57:39,667 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:470218 +03 二月 2026 | 11:57:39,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:57:39,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:57:40,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:57:40,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:57:40,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:57:40,374 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:57:40,489 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:57:40,530 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:57:40,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 11:57:40,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:57:40,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:57:40,706 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:57:40,962 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@42c23d3b +03 二月 2026 | 11:57:41,719 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:57:41,719 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:57:41,719 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:57:41,760 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:57:41,799 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:57:41,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:57:45,299 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 11:57:45,333 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 11:57:45,918 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:57:45,928 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:57:48,058 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:146 +03 二月 2026 | 11:57:48,172 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:57:57,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:57:57,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:57:57,576 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:57:57,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:57:57,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:57:57,695 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:57:58,057 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:57:58,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:57:58,211 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:57:58,212 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8273000 +03 二月 2026 | 11:57:58,212 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:57:58,212 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:57:58,391 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:57:58,647 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7ee2db15 +03 二月 2026 | 11:57:59,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:57:59,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:57:59,399 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:57:59,439 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:57:59,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:57:59,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:58:00,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:58:01,166 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:58:01,167 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:58:01,167 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:423547 +03 二月 2026 | 11:58:01,636 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 11:58:03,640 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:423547 +03 二月 2026 | 11:58:03,680 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:58:03,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:58:04,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:58:04,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:58:04,014 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:58:04,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:58:04,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:58:04,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:58:04,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8273000 +03 二月 2026 | 11:58:04,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:58:04,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:58:04,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:58:04,949 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7ee2db15 +03 二月 2026 | 11:58:05,706 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:58:05,706 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:58:05,707 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:58:05,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:58:05,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:58:05,925 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:58:05,931 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:58:05,948 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:58:09,354 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:58:17,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886285 +03 二月 2026 | 11:58:17,521 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:58:17,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 11:58:17,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:58:17,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:58:17,844 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:58:18,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:58:18,307 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:58:18,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:58:18,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:58:18,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:58:18,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:58:18,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:58:18,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1b6f5771 +03 二月 2026 | 11:58:19,531 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:58:19,531 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:58:19,531 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:58:19,573 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:58:19,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:58:19,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:58:20,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:58:21,271 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:58:21,273 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:58:21,273 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:609151 +03 二月 2026 | 11:58:21,595 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:58:23,214 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:609151 +03 二月 2026 | 11:58:23,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:58:23,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:58:23,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:58:23,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:58:23,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:58:23,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:58:24,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:58:24,076 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:58:24,076 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:58:24,076 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:58:24,076 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:58:24,247 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:58:24,500 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1b6f5771 +03 二月 2026 | 11:58:25,262 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:58:25,262 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:58:25,262 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:58:25,302 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:58:25,345 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:58:25,490 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:58:25,934 | ERROR | Thread-45 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:58:25,938 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:58:28,878 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:58:38,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:955211 +03 二月 2026 | 11:58:38,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +03 二月 2026 | 11:58:38,900 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 11:58:43,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:685183 +03 二月 2026 | 11:58:43,815 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:58:44,025 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:58:44,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:58:44,143 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:58:44,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:58:44,494 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:58:44,611 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:58:44,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:58:44,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:58:44,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:58:44,651 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:58:44,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:58:45,074 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1b6f5771 +03 二月 2026 | 11:58:45,829 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:58:45,829 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:58:45,829 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:58:45,868 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:58:45,909 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:58:45,937 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 11:58:45,943 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 11:58:46,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:58:46,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:58:47,576 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:58:47,577 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:58:47,577 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:673428 +03 二月 2026 | 11:58:47,901 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 11:58:49,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:673428 +03 二月 2026 | 11:58:49,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:58:49,764 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:58:49,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:58:49,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:58:49,878 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:58:50,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:58:50,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:58:50,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:58:50,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 11:58:50,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:58:50,381 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:58:50,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:58:50,806 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1b6f5771 +03 二月 2026 | 11:58:51,558 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:58:51,566 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:58:51,566 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:58:51,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:58:51,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:58:51,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:58:55,183 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 11:59:00,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:685183 +03 二月 2026 | 11:59:00,168 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:59:00,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:59:00,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:59:00,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:59:00,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:59:00,929 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:59:01,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:59:01,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:59:01,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 11:59:01,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:59:01,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:59:01,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:59:01,507 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@42c23d3b +03 二月 2026 | 11:59:02,263 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:59:02,263 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:59:02,263 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:59:02,302 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:59:02,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:59:02,490 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 11:59:03,216 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 11:59:03,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 11:59:03,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 11:59:03,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:296900 +03 二月 2026 | 11:59:04,299 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 11:59:05,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:296900 +03 二月 2026 | 11:59:05,941 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:59:06,148 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 11:59:06,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 11:59:06,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 11:59:06,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 11:59:06,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 11:59:06,726 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 11:59:06,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 11:59:06,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 11:59:06,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 11:59:06,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 11:59:06,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 11:59:07,190 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@42c23d3b +03 二月 2026 | 11:59:07,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 11:59:07,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 11:59:07,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 11:59:07,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 11:59:08,031 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 11:59:08,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:01:56,508 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:01:56,553 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:01:56,837 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:01:57,067 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:02:01,205 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:18 +03 二月 2026 | 12:02:01,357 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:02:04,154 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:02:04,951 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:02:04,951 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:02:04,951 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:358193 +03 二月 2026 | 12:02:05,256 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:02:06,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:358193 +03 二月 2026 | 12:02:06,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:02:07,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:02:07,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:02:07,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:02:07,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:02:07,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:02:07,572 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:02:07,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:02:07,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 12:02:07,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:02:07,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:02:07,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:02:07,977 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@8e2298e +03 二月 2026 | 12:02:08,638 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:02:08,639 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:02:08,639 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:02:08,681 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:02:08,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:02:08,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:02:12,208 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 12:02:12,224 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:02:12,242 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:02:12,431 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:02:14,995 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:132788 repeat login, token count:31 +03 二月 2026 | 12:02:18,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:358193 +03 二月 2026 | 12:02:18,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 12:02:18,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 12:02:18,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:02:18,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:02:18,415 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:02:18,740 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:02:18,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:02:18,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:02:18,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 12:02:18,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:02:18,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:02:19,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:02:19,249 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7f422788 +03 二月 2026 | 12:02:19,911 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:02:19,911 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:02:19,911 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:02:19,952 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:02:19,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:02:20,156 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:02:20,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:02:21,520 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:02:21,520 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:02:21,520 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:843900 +03 二月 2026 | 12:02:21,868 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 12:02:23,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:843900 +03 二月 2026 | 12:02:23,487 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:02:23,674 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:02:23,776 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:02:23,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:02:23,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:02:24,101 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:02:24,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:02:24,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:02:24,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 12:02:24,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:02:24,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:02:24,387 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:02:24,606 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7f422788 +03 二月 2026 | 12:02:25,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:02:25,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:02:25,265 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:02:25,308 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:02:25,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:02:25,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:02:28,880 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 login +03 二月 2026 | 12:02:28,886 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 12:02:28,923 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:02:29,114 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:02:31,655 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:907904 repeat login, token count:147 +03 二月 2026 | 12:02:35,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:843900 +03 二月 2026 | 12:02:35,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 12:02:35,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 12:02:35,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:02:35,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:02:35,441 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:02:35,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:02:35,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:02:35,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:02:35,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8273000 +03 二月 2026 | 12:02:35,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:02:35,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:02:36,054 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:02:36,273 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@29f54539 +03 二月 2026 | 12:02:36,933 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:02:36,933 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:02:36,933 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:02:36,973 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:02:37,017 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:02:37,168 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:02:37,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:02:38,485 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:02:38,485 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:02:38,485 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:942531 +03 二月 2026 | 12:02:38,791 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 12:02:40,314 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:942531 +03 二月 2026 | 12:02:40,349 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:02:40,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:02:40,629 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:02:40,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:02:40,630 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:02:40,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:02:41,058 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:02:41,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:02:41,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:8273000 +03 二月 2026 | 12:02:41,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:02:41,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:02:41,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:02:41,461 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@29f54539 +03 二月 2026 | 12:02:42,120 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:02:42,120 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:02:42,120 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:02:42,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:02:42,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:02:42,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:02:45,702 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=907904} +03 二月 2026 | 12:02:45,794 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:02:45,898 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:02:45,898 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:02:45,937 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:02:46,314 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:02:46,314 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:02:46,315 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:942531 +03 二月 2026 | 12:02:46,856 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:02:48,555 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:942531 +03 二月 2026 | 12:02:48,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:02:48,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:02:48,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:02:48,918 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:02:49,223 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=942531, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:02:52,258 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:02:52,753 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:02:52,753 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:02:52,753 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:942531 +03 二月 2026 | 12:02:53,143 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 12:02:54,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:942531 +03 二月 2026 | 12:02:55,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:02:55,210 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:02:55,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:02:55,375 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:02:55,706 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=942531, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:02:58,741 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:02:58,877 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:02:59,011 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:02:59,011 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:02:59,481 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:02:59,481 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:02:59,481 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:942531 +03 二月 2026 | 12:02:59,846 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:907904 +03 二月 2026 | 12:04:10,995 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:04:11,041 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:04:11,338 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:04:11,579 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:04:16,106 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:19 +03 二月 2026 | 12:04:16,241 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:04:16,603 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:04:16,603 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:04:16,603 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:942531 +03 二月 2026 | 12:04:17,068 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:04:19,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:942531 +03 二月 2026 | 12:04:19,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:04:19,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:04:19,615 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:04:19,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:04:19,959 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=942531, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:04:23,339 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:05:25,646 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:05:25,691 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:05:25,947 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:05:26,168 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:05:30,492 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:20 +03 二月 2026 | 12:05:30,620 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:05:33,594 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:05:34,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:05:34,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:05:34,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:145415 +03 二月 2026 | 12:05:34,809 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:05:36,540 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:145415 +03 二月 2026 | 12:05:36,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:05:36,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:05:36,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:05:36,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:05:40,302 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:05:43,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:05:49,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:05:55,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:05:56,153 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:05:56,153 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:05:56,153 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:358193 +03 二月 2026 | 12:05:56,688 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:05:58,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:358193 +03 二月 2026 | 12:05:58,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:05:58,492 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:05:58,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:05:58,602 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:05:58,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:05:58,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:05:59,061 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:05:59,105 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:05:59,105 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 12:05:59,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:05:59,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:05:59,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:05:59,469 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:06:00,131 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:06:00,131 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:06:00,131 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:06:00,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:06:00,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:06:00,379 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:06:00,692 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=358193, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:06:03,735 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:06:03,746 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:06:04,005 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:06:07,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:06:13,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:06:19,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:06:20,273 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:06:20,273 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:06:20,274 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:358193 +03 二月 2026 | 12:06:20,694 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:06:22,312 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:358193 +03 二月 2026 | 12:06:22,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:06:22,524 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:06:22,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:06:22,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:06:22,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:06:22,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:06:23,091 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:06:23,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:06:23,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 12:06:23,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:06:23,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:06:23,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:06:23,497 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:06:24,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:06:24,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:06:24,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:06:24,202 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:06:24,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:06:24,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:06:24,715 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=358193, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:06:27,760 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:06:27,775 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:06:28,062 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:06:31,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:06:37,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:06:43,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:06:44,254 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:06:44,254 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:06:44,254 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:358193 +03 二月 2026 | 12:06:44,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:06:46,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:358193 +03 二月 2026 | 12:06:46,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:06:46,683 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:06:46,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:06:46,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:06:46,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:06:47,151 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:06:47,263 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:06:47,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:06:47,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 12:06:47,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:06:47,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:06:47,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:06:47,676 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:06:48,471 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:06:48,471 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:06:48,472 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:06:48,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:06:48,557 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:06:48,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:06:49,032 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=358193, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:06:52,074 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:06:52,081 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:06:52,335 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:06:55,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:01,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:07,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:08,283 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:07:08,284 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:07:08,284 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:358193 +03 二月 2026 | 12:07:08,738 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:07:10,373 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:358193 +03 二月 2026 | 12:07:10,414 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:07:10,596 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:07:10,706 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:07:10,706 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:07:10,706 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:07:11,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:07:11,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:07:11,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:07:11,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 12:07:11,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:07:11,205 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:07:11,347 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:07:11,568 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:07:12,241 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:07:12,242 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:07:12,242 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:07:12,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:07:12,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:07:12,491 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:07:12,810 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=358193, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:07:15,852 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:15,855 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:07:16,108 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:07:19,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:25,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:31,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:32,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:07:32,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:07:32,325 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:358193 +03 二月 2026 | 12:07:32,791 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:07:34,442 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:358193 +03 二月 2026 | 12:07:34,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 12:07:34,679 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 12:07:34,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:07:34,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:07:34,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:07:35,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:07:35,255 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:07:35,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:07:35,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2694000 +03 二月 2026 | 12:07:35,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:07:35,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:07:35,445 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:07:35,673 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:07:36,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:07:36,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:07:36,339 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:07:36,382 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:07:36,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:07:36,597 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:07:36,925 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=358193, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:07:39,966 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:39,989 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 12:07:40,346 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:07:40,599 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 12:07:40,689 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@71e8b4b5 +03 二月 2026 | 12:07:41,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 203, 107, 105, 104, 208, 103, 101, 201, 201, 107] +03 二月 2026 | 12:07:41,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:07:41,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 12:07:41,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:07:41,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[207] +03 二月 2026 | 12:07:43,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:44,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 203, 107, 105, 104, 208, 103, 101, 201, 107, 203] +03 二月 2026 | 12:07:44,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:07:44,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 12:07:44,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:07:44,502 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 102, 206, 205] +03 二月 2026 | 12:07:49,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:07:55,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:01,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:07,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:13,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:16,699 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 107, 105, 104, 208, 103, 101, 201, 107, 203, 201] +03 二月 2026 | 12:08:16,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:08:16,701 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 12:08:16,701 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:08:16,701 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 102, 109, 206, 205, 204, 202] +03 二月 2026 | 12:08:19,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:25,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 107, 105, 104, 208, 103, 101, 107, 203, 201, 103] +03 二月 2026 | 12:08:25,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:08:25,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 12:08:25,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:08:25,167 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 201, 102, 109, 204, 206, 205, 204, 202] +03 二月 2026 | 12:08:25,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:27,491 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209, 105, 104, 208, 103, 101, 107, 203, 201, 103, 107] +03 二月 2026 | 12:08:27,491 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:08:27,491 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205] +03 二月 2026 | 12:08:27,491 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:08:27,491 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 201, 107, 102, 109, 204, 206, 206, 205, 204, 202] +03 二月 2026 | 12:08:31,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:33,926 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 104, 103, 101, 203, 201, 103, 107] +03 二月 2026 | 12:08:33,926 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:08:33,926 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205, 207, 208, 209] +03 二月 2026 | 12:08:33,926 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:08:33,926 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 201, 107, 107, 102, 109, 204, 206, 207, 206, 205, 204, 202] +03 二月 2026 | 12:08:37,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:43,948 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:47,551 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 104, 103, 101, 203, 201, 103, 209] +03 二月 2026 | 12:08:47,551 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:08:47,551 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205, 207, 208, 209] +03 二月 2026 | 12:08:47,551 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:08:47,551 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 201, 107, 107, 107, 102, 109, 204, 206, 204, 206, 205, 208, 209, 204, 202] +03 二月 2026 | 12:08:49,947 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:50,550 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 104, 103, 101, 203, 201, 103, 106] +03 二月 2026 | 12:08:50,550 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:08:50,550 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 206, 205, 207, 208, 209] +03 二月 2026 | 12:08:50,550 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:08:50,550 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 201, 107, 107, 107, 209, 102, 109, 204, 206, 204, 105, 206, 205, 208, 209, 204, 202] +03 二月 2026 | 12:08:55,946 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:08:59,932 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:145415 +03 二月 2026 | 12:08:59,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:00,181 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:00,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:09:00,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:09:00,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:09:00,663 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:09:00,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:09:00,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:09:00,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:09:00,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:09:00,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:09:00,989 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:09:01,254 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:09:02,056 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:09:02,056 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:09:02,056 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:09:02,093 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:09:02,132 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:09:02,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:09:03,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:09:03,912 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:09:03,913 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:09:03,913 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:977735 +03 二月 2026 | 12:09:04,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:09:05,940 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:977735 +03 二月 2026 | 12:09:05,976 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:06,177 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:06,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:09:06,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:09:06,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:09:06,663 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:09:06,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:09:06,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:09:06,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:09:06,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:09:06,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:09:06,996 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:09:07,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:09:08,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:09:08,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:09:08,047 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:09:08,085 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:09:08,123 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:09:08,274 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:09:11,627 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:09:11,627 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:09:16,116 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:09:16,125 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 12:09:19,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:09:28,896 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:977735 +03 二月 2026 | 12:09:28,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:29,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:29,261 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:09:29,261 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:09:29,261 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:09:29,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:09:29,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:09:29,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:09:29,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:09:29,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:09:29,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:09:29,961 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:09:30,225 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:09:31,009 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:09:31,009 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:09:31,009 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:09:31,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:09:31,083 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:09:31,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:09:32,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:09:32,816 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:09:32,816 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:09:32,816 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:279296 +03 二月 2026 | 12:09:33,183 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:09:34,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:279296 +03 二月 2026 | 12:09:34,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:35,134 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:35,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:09:35,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:09:35,258 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:09:35,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:09:35,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:09:35,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:09:35,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:09:35,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:09:35,783 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:09:35,950 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:09:36,121 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:09:36,129 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 12:09:36,210 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:09:37,002 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:09:37,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:09:37,003 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:09:37,040 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:09:37,078 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:09:37,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:09:43,680 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:977735 +03 二月 2026 | 12:09:43,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:43,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:44,050 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:09:44,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:09:44,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:09:44,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:09:44,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:09:44,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:09:44,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:09:44,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:09:44,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:09:44,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:09:45,000 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:09:45,784 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:09:45,784 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:09:45,784 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:09:45,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:09:45,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:09:46,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:09:46,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:09:47,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:09:47,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:09:47,518 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:553344 +03 二月 2026 | 12:09:47,872 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:09:49,661 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:553344 +03 二月 2026 | 12:09:49,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:49,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:09:50,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:09:50,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:09:50,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:09:50,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:09:50,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:09:50,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:09:50,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:09:50,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:09:50,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:09:50,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:09:50,978 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@79a00990 +03 二月 2026 | 12:09:51,836 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:09:51,836 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:09:51,837 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:09:51,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:09:51,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:09:52,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:09:55,581 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:21:14,544 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:21:14,588 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:21:26,805 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:21:26,846 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:22:48,418 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:22:48,462 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:26:05,725 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:26:05,770 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:27:06,288 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:27:06,328 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:27:07,874 | INFO | NetEvent-Thread | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:27:08,005 | INFO | NetEvent-Thread | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:27:12,144 | WARN | NetEvent-Thread | client.business.AccountBusiness | | id:168417 repeat login, token count:21 +03 二月 2026 | 12:27:15,455 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:27:16,330 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:27:16,330 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:27:16,331 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | room_keyroom:657371 +03 二月 2026 | 12:27:16,647 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:27:18,283 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:657371 +03 二月 2026 | 12:27:18,317 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:27:18,515 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:27:18,631 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:27:18,631 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:27:18,631 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:27:18,988 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:27:19,100 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:27:19,145 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:27:19,145 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:27:19,145 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:27:19,145 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:27:19,308 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:27:19,548 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@34e2333 +03 二月 2026 | 12:27:20,270 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:27:20,270 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:27:20,270 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:27:20,313 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:27:20,359 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:27:20,514 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:27:28,350 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:27:28,395 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:27:38,710 | INFO | NetEvent-Thread | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:27:38,842 | INFO | NetEvent-Thread | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:27:42,861 | WARN | NetEvent-Thread | client.business.AccountBusiness | | id:168417 repeat login, token count:22 +03 二月 2026 | 12:27:45,879 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:657371 +03 二月 2026 | 12:27:45,922 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:27:46,110 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:27:46,212 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:27:46,212 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:27:46,212 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:27:46,634 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:27:46,735 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:27:46,775 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:27:46,775 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:27:46,775 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:27:46,775 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:27:46,917 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:27:47,125 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@386bbf34 +03 二月 2026 | 12:27:47,744 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:27:47,745 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:27:47,745 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:27:47,780 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:27:47,820 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:27:47,978 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:27:48,617 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:27:49,453 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:27:49,453 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:27:49,453 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | room_keyroom:817618 +03 二月 2026 | 12:27:49,802 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:27:51,313 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:817618 +03 二月 2026 | 12:27:51,354 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:27:51,539 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:27:51,642 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:27:51,643 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:27:51,643 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:27:51,954 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:27:52,056 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:27:52,092 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:27:52,093 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:27:52,093 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:27:52,093 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:27:52,238 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:27:52,445 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@386bbf34 +03 二月 2026 | 12:27:53,062 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:27:53,063 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:27:53,063 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:27:53,099 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:27:53,135 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:27:53,290 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:28:05,941 | ERROR | Thread-30 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:28:09,235 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:817618 +03 二月 2026 | 12:28:09,269 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:28:09,440 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:28:09,543 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:28:09,543 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:28:09,543 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:28:09,856 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:28:09,958 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:28:09,994 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:28:09,994 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:28:09,994 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:28:09,994 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:28:10,132 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:28:10,339 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@386bbf34 +03 二月 2026 | 12:28:10,957 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:28:10,959 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:28:10,959 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:28:10,994 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:28:11,031 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:28:11,171 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:28:11,790 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:28:12,468 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:28:12,468 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:28:12,469 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | room_keyroom:682346 +03 二月 2026 | 12:28:12,774 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:28:14,212 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:682346 +03 二月 2026 | 12:28:14,247 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:28:14,420 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:28:14,521 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:28:14,521 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:28:14,521 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:28:14,834 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:28:14,936 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:28:14,971 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:28:14,972 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:28:14,972 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:28:14,972 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:28:15,110 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:28:15,316 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@386bbf34 +03 二月 2026 | 12:28:15,930 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:28:15,930 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:28:15,930 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:28:15,966 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:28:16,002 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:28:16,142 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:28:19,466 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:28:19,466 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 12:28:25,947 | ERROR | Thread-34 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:28:32,458 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:817618 +03 二月 2026 | 12:28:32,501 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:28:32,689 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:28:32,791 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:28:32,792 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:28:32,792 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:28:33,104 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:28:33,205 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:28:33,241 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:28:33,241 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:28:33,241 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:28:33,241 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:28:33,385 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:28:33,590 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@386bbf34 +03 二月 2026 | 12:28:34,207 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:28:34,207 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:28:34,207 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:28:34,243 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:28:34,279 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:28:34,437 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:28:35,086 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:28:35,795 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:28:35,795 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:28:35,795 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | room_keyroom:289769 +03 二月 2026 | 12:28:36,155 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:28:40,166 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:28:40,209 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:28:50,539 | INFO | NetEvent-Thread | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:28:50,651 | INFO | NetEvent-Thread | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:28:54,697 | WARN | NetEvent-Thread | client.business.AccountBusiness | | id:168417 repeat login, token count:23 +03 二月 2026 | 12:28:58,328 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:817618 +03 二月 2026 | 12:28:58,367 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:28:58,546 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:28:58,654 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:28:58,654 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:28:58,654 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:28:59,083 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:28:59,190 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:28:59,226 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:28:59,227 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:28:59,227 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:28:59,227 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:28:59,374 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:28:59,596 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@ea502f6 +03 二月 2026 | 12:29:00,265 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:29:00,266 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:29:00,266 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:29:00,299 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:29:00,342 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:29:00,479 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:29:01,119 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:29:01,968 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:29:01,969 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:29:01,969 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | room_keyroom:613481 +03 二月 2026 | 12:29:02,280 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:29:03,768 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:613481 +03 二月 2026 | 12:29:03,802 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:29:03,983 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:29:04,090 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:29:04,090 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:29:04,090 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:29:04,405 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:29:04,513 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:29:04,547 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:29:04,547 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:29:04,547 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:29:04,547 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:29:04,693 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:29:04,914 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@ea502f6 +03 二月 2026 | 12:29:05,582 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:29:05,583 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:29:05,583 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:29:05,616 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:29:05,649 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:29:05,785 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:29:15,967 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:29:22,581 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:817618 +03 二月 2026 | 12:29:22,621 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:29:22,812 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:29:22,922 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:29:22,922 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:29:22,922 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:29:23,238 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:29:23,345 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:29:23,379 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:29:23,379 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:29:23,379 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:29:23,379 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:29:23,545 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:29:23,772 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@ea502f6 +03 二月 2026 | 12:29:24,440 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:29:24,440 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:29:24,440 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:29:24,476 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:29:24,509 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:29:24,655 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:30:39,068 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:30:39,113 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:30:49,404 | INFO | NetEvent-Thread | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:30:49,528 | INFO | NetEvent-Thread | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:30:53,842 | WARN | NetEvent-Thread | client.business.AccountBusiness | | id:168417 repeat login, token count:24 +03 二月 2026 | 12:30:56,905 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:30:57,929 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:30:57,929 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:30:57,929 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | room_keyroom:528507 +03 二月 2026 | 12:30:58,341 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:31:00,018 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:528507 +03 二月 2026 | 12:31:00,060 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:31:00,271 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:31:00,371 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:31:00,371 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:31:00,371 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:31:00,695 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:31:00,795 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:31:00,838 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:31:00,838 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:31:00,838 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:31:00,838 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:31:01,007 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:31:01,226 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1e5e1f3c +03 二月 2026 | 12:31:01,881 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:31:01,881 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:31:01,881 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:31:01,925 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:31:01,968 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:31:02,136 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:31:15,999 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:31:28,980 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:31:29,029 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:31:44,355 | INFO | NetEvent-Thread | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:31:44,506 | INFO | NetEvent-Thread | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:31:48,397 | WARN | NetEvent-Thread | client.business.AccountBusiness | | id:168417 repeat login, token count:25 +03 二月 2026 | 12:31:51,425 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:31:52,278 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:31:52,278 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:31:52,278 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | room_keyroom:172080 +03 二月 2026 | 12:31:52,579 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:31:54,124 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | finalRoom:room:172080 +03 二月 2026 | 12:31:54,157 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:31:54,479 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:31:54,629 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:31:54,629 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:31:54,629 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:31:54,953 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:31:55,052 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:31:55,096 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:31:55,096 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:31:55,096 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:31:55,096 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:31:55,237 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:31:55,463 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3c18bd0e +03 二月 2026 | 12:31:56,142 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:31:56,142 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:31:56,143 | ERROR | NetEvent-Thread | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:31:56,186 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:31:56,228 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:31:56,378 | INFO | NetEvent-Thread | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:32:06,017 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:33:14,977 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:33:15,021 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:33:15,366 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:33:15,614 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:33:20,177 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:26 +03 二月 2026 | 12:33:23,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:172080 +03 二月 2026 | 12:33:23,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:33:23,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:33:23,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:33:23,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:33:23,954 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:33:24,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:33:24,645 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:33:24,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:33:24,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:33:24,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:33:24,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:33:24,869 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:33:25,025 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:33:25,113 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@10d9c96f +03 二月 2026 | 12:33:25,848 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:33:25,849 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:33:25,849 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:33:25,887 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:33:25,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:33:26,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:33:26,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:33:27,925 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:33:27,925 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:33:27,926 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:319335 +03 二月 2026 | 12:33:28,306 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:33:30,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:319335 +03 二月 2026 | 12:33:30,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:33:30,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:33:30,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:33:30,422 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:33:30,423 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:33:30,820 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:33:30,962 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:33:31,000 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:33:31,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2358000 +03 二月 2026 | 12:33:31,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:33:31,001 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:33:31,185 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:33:31,428 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@10d9c96f +03 二月 2026 | 12:33:32,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:33:32,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:33:32,160 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:33:32,199 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:33:32,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:33:32,398 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:33:35,772 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:33:35,773 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:33:39,365 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:33:45,027 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:33:45,259 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:33:45,295 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.250, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=622563300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 12:33:45,296 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 12:33:45,367 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:33:45,656 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:33:45,866 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 12:33:45,948 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@39166d8e +03 二月 2026 | 12:33:45,948 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 107, 206, 103, 207, 204, 109, 209, 208, 206, 105, 201, 104, 102] +03 二月 2026 | 12:33:45,948 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:33:45,948 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:33:45,948 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:33:45,948 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 12:33:51,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:33:57,365 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:03,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:06,275 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 206, 103, 207, 204, 109, 208, 206, 201, 104, 102] +03 二月 2026 | 12:34:06,275 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:34:06,275 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105] +03 二月 2026 | 12:34:06,275 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:34:06,275 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 106] +03 二月 2026 | 12:34:09,365 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:15,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:21,365 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:26,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 206, 103, 207, 204, 208, 206, 201, 104, 102, 106] +03 二月 2026 | 12:34:26,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:34:26,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105] +03 二月 2026 | 12:34:26,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:34:26,486 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 101, 107, 105, 108, 107] +03 二月 2026 | 12:34:27,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:33,367 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:39,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:45,365 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:51,367 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:34:56,687 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 206, 103, 207, 204, 208, 206, 201, 104, 102, 203] +03 二月 2026 | 12:34:56,688 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:34:56,688 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105] +03 二月 2026 | 12:34:56,688 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:34:56,688 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 106, 101, 101, 107, 105, 108, 107] +03 二月 2026 | 12:34:57,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:35:03,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:35:09,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:35:15,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:35:16,867 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 206, 207, 208, 206, 201, 102, 203] +03 二月 2026 | 12:35:16,868 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:35:16,868 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105, 102, 103, 104] +03 二月 2026 | 12:35:16,868 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:35:16,868 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 106, 204, 101, 101, 102, 107, 105, 108, 107] +03 二月 2026 | 12:35:21,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:35:27,084 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 207, 208, 206, 201, 102, 203, 105] +03 二月 2026 | 12:35:27,084 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:35:27,084 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105, 102, 103, 104] +03 二月 2026 | 12:35:27,084 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:35:27,084 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 106, 204, 101, 101, 104, 107, 105, 103, 104, 108, 107, 205, 204] +03 二月 2026 | 12:35:27,365 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:35:33,367 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:35:37,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 207, 208, 206, 201, 102, 203, 104] +03 二月 2026 | 12:35:37,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:35:37,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 107, 105, 102, 103, 104] +03 二月 2026 | 12:35:37,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:35:37,287 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 106, 204, 105, 101, 101, 104, 109, 107, 105, 103, 104, 108, 107, 205, 204] +03 二月 2026 | 12:35:39,366 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:35:45,625 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:35:45,666 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:35:45,909 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:35:46,135 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:35:50,574 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:27 +03 二月 2026 | 12:35:51,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:35:53,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:172080 +03 二月 2026 | 12:35:53,864 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:35:54,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:35:54,148 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:35:54,188 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:35:54,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:35:55,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:35:55,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:35:55,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:838599 +03 二月 2026 | 12:35:56,039 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:35:57,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:838599 +03 二月 2026 | 12:35:57,724 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:35:57,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:35:58,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:35:58,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:36:01,396 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:36:01,808 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205] +03 二月 2026 | 12:36:01,809 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:36:01,809 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:36:01,809 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:36:01,809 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 12:36:03,909 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:36:35,036 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:36:35,080 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:36:35,317 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:36:35,539 | INFO | pool-3-thread-1 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:36:40,085 | WARN | pool-3-thread-1 | client.business.AccountBusiness | | id:168417 repeat login, token count:28 +03 二月 2026 | 12:36:41,086 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:36:43,169 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:172080 +03 二月 2026 | 12:36:43,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:36:43,430 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:36:43,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:36:43,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:36:43,542 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:36:43,994 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:36:44,099 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:36:44,137 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:36:44,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2357000 +03 二月 2026 | 12:36:44,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:36:44,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:36:44,318 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:36:44,531 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:36:45,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:36:45,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:36:45,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:36:45,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:36:45,245 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:36:45,401 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:36:46,119 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:36:47,046 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:36:47,046 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:36:47,046 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:521790 +03 二月 2026 | 12:36:47,397 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:36:48,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:521790 +03 二月 2026 | 12:36:49,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:36:49,233 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:36:49,338 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:36:49,338 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:36:49,338 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:36:49,659 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:36:49,763 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:36:49,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:36:49,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2357000 +03 二月 2026 | 12:36:49,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:36:49,801 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:36:49,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:36:50,194 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:36:50,834 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:36:50,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:36:50,835 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:36:50,871 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:36:50,908 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:36:51,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:36:54,400 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:36:54,401 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:36:55,094 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:36:55,214 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:36:59,317 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:05,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:11,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:11,657 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:37:11,658 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:37:11,658 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:521790 +03 二月 2026 | 12:37:12,246 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:37:13,899 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:521790 +03 二月 2026 | 12:37:13,940 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 12:37:14,161 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 12:37:14,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:37:14,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:37:14,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:37:14,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:37:14,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:37:14,776 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:37:14,776 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2357000 +03 二月 2026 | 12:37:14,776 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:37:14,776 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:37:14,955 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:37:15,178 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:37:15,850 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:37:15,851 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:37:15,851 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:37:15,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:37:15,925 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:37:16,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:37:16,397 | INFO | pool-3-thread-1 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=521790, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:37:19,433 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:20,260 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 12:37:20,487 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:37:20,700 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 12:37:20,786 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@75a62da2 +03 二月 2026 | 12:37:22,885 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 205, 203, 205, 201, 202, 202, 109, 207, 203, 107] +03 二月 2026 | 12:37:22,885 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:22,885 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:37:22,885 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:22,885 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209] +03 二月 2026 | 12:37:23,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:28,050 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 201, 202, 109, 207, 203, 107] +03 二月 2026 | 12:37:28,050 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:28,050 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 12:37:28,050 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:28,050 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 102, 103, 209, 209] +03 二月 2026 | 12:37:29,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:31,268 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 201, 202, 207, 203, 107, 107] +03 二月 2026 | 12:37:31,268 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:31,268 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 12:37:31,268 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:31,268 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 201, 202, 203, 102, 103, 209, 209] +03 二月 2026 | 12:37:35,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:35,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 201, 202, 207, 203, 107, 104] +03 二月 2026 | 12:37:35,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:35,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 12:37:35,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:35,480 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 201, 108, 202, 203, 102, 103, 108, 109, 209, 209] +03 二月 2026 | 12:37:38,690 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 201, 202, 207, 203, 104, 107] +03 二月 2026 | 12:37:38,690 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:38,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 12:37:38,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:38,691 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 107, 201, 108, 202, 202, 203, 102, 103, 108, 109, 209, 209] +03 二月 2026 | 12:37:41,317 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:43,900 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 201, 202, 207, 203, 107, 108] +03 二月 2026 | 12:37:43,900 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:43,900 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 12:37:43,900 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:43,901 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 107, 201, 108, 202, 203, 202, 203, 102, 103, 108, 109, 105, 103, 209, 209] +03 二月 2026 | 12:37:46,115 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 201, 202, 207, 203, 108, 107] +03 二月 2026 | 12:37:46,115 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:46,115 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 12:37:46,115 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:46,115 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 107, 107, 201, 108, 202, 203, 207, 202, 203, 102, 103, 108, 109, 105, 103, 209, 209] +03 二月 2026 | 12:37:47,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:48,325 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 201, 202, 207, 203, 107, 204] +03 二月 2026 | 12:37:48,326 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:48,326 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 12:37:48,326 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:48,326 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 107, 107, 108, 201, 108, 202, 203, 207, 202, 202, 203, 102, 103, 108, 109, 105, 103, 209, 209] +03 二月 2026 | 12:37:53,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:57,652 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 201, 202, 207, 203, 204, 106] +03 二月 2026 | 12:37:57,652 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:57,652 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 12:37:57,653 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:57,653 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 107, 107, 108, 107, 201, 108, 202, 203, 207, 202, 103, 202, 203, 102, 103, 108, 109, 105, 103, 209, 209] +03 二月 2026 | 12:37:59,317 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:37:59,864 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 205, 201, 202, 207, 203, 204, 204] +03 二月 2026 | 12:37:59,865 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[209, 209, 209] +03 二月 2026 | 12:37:59,865 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[201, 202, 203] +03 二月 2026 | 12:37:59,865 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:37:59,865 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 107, 107, 108, 107, 106, 201, 108, 202, 203, 207, 202, 103, 102, 202, 203, 102, 103, 108, 109, 105, 103, 209, 209] +03 二月 2026 | 12:38:05,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:38:08,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:172080 +03 二月 2026 | 12:38:08,171 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:08,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:08,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:38:08,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:38:08,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:38:08,831 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:38:08,937 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:38:08,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:38:08,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:38:08,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:38:08,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:38:09,162 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:38:09,376 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:38:10,019 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:38:10,020 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:38:10,020 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:38:10,058 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:38:10,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:38:10,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:38:11,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:38:11,908 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:38:11,908 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:38:11,908 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:192863 +03 二月 2026 | 12:38:12,296 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:38:13,935 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:192863 +03 二月 2026 | 12:38:13,982 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:14,214 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:14,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:38:14,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:38:14,319 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:38:14,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:38:14,746 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:38:14,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:38:14,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:38:14,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:38:14,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:38:14,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:38:15,181 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:38:15,822 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:38:15,822 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:38:15,822 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:38:15,860 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:38:15,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:38:16,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:38:16,119 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:38:17,075 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 12:38:22,010 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:192863 +03 二月 2026 | 12:38:22,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:22,249 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:22,354 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:38:22,354 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:38:22,354 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:38:22,672 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:38:22,776 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:38:22,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:38:22,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:38:22,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:38:22,813 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:38:22,985 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:38:23,199 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:38:23,836 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:38:23,837 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:38:23,837 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:38:23,874 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:38:23,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:38:24,053 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:38:24,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:38:25,486 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:38:25,486 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:38:25,486 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:490751 +03 二月 2026 | 12:38:25,795 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:38:27,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:490751 +03 二月 2026 | 12:38:27,326 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:27,530 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:27,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:38:27,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:38:27,634 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:38:27,953 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:38:28,057 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:38:28,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:38:28,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:38:28,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:38:28,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:38:28,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:38:28,479 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:38:29,122 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:38:29,122 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:38:29,122 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:38:29,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:38:29,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:38:29,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:38:33,085 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:38:35,520 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:490751 +03 二月 2026 | 12:38:35,558 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:35,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:35,885 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:38:35,885 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:38:35,885 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:38:36,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:38:36,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:38:36,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:38:36,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:38:36,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:38:36,351 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:38:36,524 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:38:36,738 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:38:37,382 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:38:37,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:38:37,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:38:37,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:38:37,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:38:37,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:38:38,312 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:38:39,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:38:39,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:38:39,053 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:188242 +03 二月 2026 | 12:38:39,374 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:38:40,896 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:188242 +03 二月 2026 | 12:38:40,934 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:41,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:38:41,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:38:41,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:38:41,264 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:38:41,585 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:38:41,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:38:41,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:38:41,729 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:38:41,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:38:41,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:38:41,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:38:42,118 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:38:42,758 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:38:42,758 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:38:42,758 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:38:42,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:38:42,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:38:42,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:38:46,307 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:38:46,307 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:38:46,308 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:38:47,092 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:38:47,210 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:38:47,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:38:53,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:38:59,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:39:02,790 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:188242 +03 二月 2026 | 12:39:02,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:39:03,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:39:03,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:39:03,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:39:03,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:39:03,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:39:03,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:39:03,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:39:03,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:39:03,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:39:03,714 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:39:03,895 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:39:04,109 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:39:04,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:39:04,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:39:04,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:39:04,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:39:04,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:39:04,982 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:39:05,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:39:06,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:39:06,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:39:06,470 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:401349 +03 二月 2026 | 12:39:06,827 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:39:08,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:401349 +03 二月 2026 | 12:39:08,519 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:39:08,740 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:39:08,847 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:39:08,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:39:12,242 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:39:12,242 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:39:16,139 | ERROR | Thread-37 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:39:16,266 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 12:39:24,270 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:39:35,317 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:39:39,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:188242 +03 二月 2026 | 12:39:39,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:39:39,398 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:39:39,502 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:39:39,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:39:40,231 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:39:41,001 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:39:41,001 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:39:41,001 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:147933 +03 二月 2026 | 12:39:41,383 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:39:43,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:147933 +03 二月 2026 | 12:39:43,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:39:43,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:39:43,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:39:43,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:39:46,139 | ERROR | Thread-42 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:39:46,281 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 12:39:50,459 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:188242 +03 二月 2026 | 12:39:50,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:39:50,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:39:50,817 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:39:50,855 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:39:51,518 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:39:52,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:39:52,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:39:52,258 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:989154 +03 二月 2026 | 12:39:52,589 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:39:54,155 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:989154 +03 二月 2026 | 12:39:54,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:39:54,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:39:54,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:39:54,551 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:39:58,286 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:40:01,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:188242 +03 二月 2026 | 12:40:01,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:40:01,824 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:40:01,932 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:40:01,966 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:40:02,616 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:40:03,344 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:40:03,344 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:40:03,344 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:278414 +03 二月 2026 | 12:40:03,658 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:40:05,183 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:278414 +03 二月 2026 | 12:40:05,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:40:05,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:40:05,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:40:05,565 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:40:08,894 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:40:08,894 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:40:09,293 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:40:09,405 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:40:11,318 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:40:17,317 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:40:23,317 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:40:27,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:188242 +03 二月 2026 | 12:40:27,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:40:27,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:40:27,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:40:27,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:40:27,498 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:40:27,818 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:40:27,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:40:27,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:40:27,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:40:27,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:40:27,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:40:28,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:40:28,355 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:40:28,999 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:40:28,999 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:40:28,999 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:40:29,036 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:40:29,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:40:29,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:40:30,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:40:30,796 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:40:30,797 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:40:30,797 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:971287 +03 二月 2026 | 12:40:31,164 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:40:32,810 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:971287 +03 二月 2026 | 12:40:32,854 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:40:33,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:40:33,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:40:33,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:40:33,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:40:33,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:40:33,609 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:40:33,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:40:33,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:40:33,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:40:33,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:40:33,828 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:40:34,041 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@360f6c5c +03 二月 2026 | 12:40:34,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:40:34,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:40:34,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:40:34,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:40:34,759 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:40:34,919 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:44:52,963 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:44:53,008 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:45:03,259 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:45:03,376 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:45:07,699 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:29 +03 二月 2026 | 12:45:07,880 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:45:11,138 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:45:12,001 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:45:12,001 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:45:12,001 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:828562 +03 二月 2026 | 12:45:12,447 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:45:14,372 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:828562 +03 二月 2026 | 12:45:14,414 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:45:14,617 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:45:14,729 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:45:14,729 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:45:14,729 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:45:15,085 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:45:15,199 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:45:15,244 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:45:15,245 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2021000 +03 二月 2026 | 12:45:15,245 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:45:15,245 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:45:15,408 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:45:15,670 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@21dc444f +03 二月 2026 | 12:45:16,452 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:45:16,452 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:45:16,452 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:45:16,496 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:45:16,539 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:45:16,709 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:45:20,138 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:45:20,266 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:45:28,442 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.252, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=622886300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 12:45:29,449 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 12:45:29,936 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:45:30,151 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 12:45:30,234 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3b2365be +03 二月 2026 | 12:45:30,234 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 204, 203, 207, 206, 107, 101, 209, 202, 102, 105, 108, 205, 105] +03 二月 2026 | 12:45:30,234 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:45:30,234 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:45:30,234 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:45:30,235 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 12:45:33,284 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 204, 203, 207, 206, 107, 101, 209, 202, 105, 108, 205, 105, 109] +03 二月 2026 | 12:45:33,285 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:45:33,285 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:45:33,285 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:45:33,285 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 103, 104] +03 二月 2026 | 12:45:36,099 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 204, 203, 207, 206, 107, 101, 202, 105, 108, 205, 105, 109, 109] +03 二月 2026 | 12:45:36,099 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:45:36,099 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:45:36,100 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:45:36,100 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 201, 209, 103, 104] +03 二月 2026 | 12:45:39,023 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 204, 203, 207, 206, 107, 101, 202, 105, 108, 205, 105, 109, 107] +03 二月 2026 | 12:45:39,023 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:45:39,023 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:45:39,023 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:45:39,023 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 109, 201, 209, 105, 103, 104] +03 二月 2026 | 12:45:39,942 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 204, 203, 207, 206, 101, 202, 105, 108, 205, 105, 109, 107, 106] +03 二月 2026 | 12:45:39,942 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:45:39,942 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:45:39,943 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:45:39,943 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 109, 107, 201, 209, 105, 103, 103, 104] +03 二月 2026 | 12:45:40,079 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:45:41,457 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 204, 203, 207, 206, 101, 202, 105, 108, 205, 105, 109, 107, 108] +03 二月 2026 | 12:45:41,457 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:45:41,458 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:45:41,458 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:45:41,458 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 109, 107, 106, 201, 209, 105, 103, 107, 103, 104] +03 二月 2026 | 12:45:43,573 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 204, 203, 207, 206, 101, 202, 105, 205, 105, 109, 107, 108, 203] +03 二月 2026 | 12:45:43,573 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:45:43,573 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:45:43,574 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:45:43,574 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 109, 107, 106, 108, 201, 209, 105, 103, 107, 206, 103, 104] +03 二月 2026 | 12:45:50,079 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:45:52,759 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:45:53,492 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:45:53,492 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:45:53,492 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:658427 +03 二月 2026 | 12:45:53,832 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:45:55,595 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:658427 +03 二月 2026 | 12:45:55,633 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 12:45:55,830 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 12:45:55,942 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:45:55,942 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:45:55,942 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:45:56,291 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:45:56,403 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:45:56,446 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:45:56,446 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2435000 +03 二月 2026 | 12:45:56,446 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:45:56,446 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:45:56,605 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:45:56,867 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@21dc444f +03 二月 2026 | 12:45:57,653 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:45:57,653 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:45:57,653 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:45:57,696 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:45:57,739 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:45:57,900 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:46:01,350 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 12:46:01,479 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:46:01,683 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 12:46:01,756 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3b2365be +03 二月 2026 | 12:46:01,756 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 105, 108, 104, 207, 201, 105, 203, 102, 209, 107, 106, 202, 205] +03 二月 2026 | 12:46:01,756 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:01,757 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:46:01,757 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:01,757 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 109, 107, 106, 108, 201, 209, 105, 103, 107, 206, 206, 103, 104, 204, 205] +03 二月 2026 | 12:46:02,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 105, 108, 104, 207, 201, 105, 203, 209, 107, 106, 202, 205, 207] +03 二月 2026 | 12:46:02,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:02,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:46:02,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:02,945 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 201] +03 二月 2026 | 12:46:04,333 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 105, 108, 207, 201, 105, 203, 209, 107, 106, 202, 205, 207, 209] +03 二月 2026 | 12:46:04,333 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:04,333 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:46:04,333 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:04,333 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 104, 201, 101] +03 二月 2026 | 12:46:07,031 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 105, 108, 207, 201, 105, 203, 209, 107, 106, 202, 207, 209, 103] +03 二月 2026 | 12:46:07,031 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:07,031 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:46:07,032 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:07,032 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 104, 201, 101, 102, 205, 205] +03 二月 2026 | 12:46:11,265 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:46:13,902 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:46:14,628 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:46:14,629 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:46:14,631 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:299948 +03 二月 2026 | 12:46:14,956 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:46:16,659 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:299948 +03 二月 2026 | 12:46:16,695 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:46:16,883 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:46:16,995 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:46:16,995 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:46:16,995 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:46:17,351 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:46:17,462 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:46:17,505 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:46:17,506 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2909000 +03 二月 2026 | 12:46:17,506 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:46:17,506 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:46:17,661 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:46:17,929 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@21dc444f +03 二月 2026 | 12:46:18,712 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:46:18,712 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:46:18,712 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:46:18,756 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:46:18,798 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:46:18,955 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:46:22,343 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:46:22,462 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:46:26,526 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.250, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=621974300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 12:46:27,330 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 12:46:27,710 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:46:27,920 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 12:46:28,006 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3b2365be +03 二月 2026 | 12:46:29,142 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 103, 109, 207, 208, 105, 109, 203, 106, 108, 207, 105, 108, 107] +03 二月 2026 | 12:46:29,143 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:29,143 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:46:29,143 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:29,143 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201] +03 二月 2026 | 12:46:32,316 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:46:32,368 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 103, 109, 208, 105, 109, 203, 106, 108, 207, 105, 108, 107, 104] +03 二月 2026 | 12:46:32,368 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:32,368 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:46:32,368 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:32,369 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 101, 208, 209] +03 二月 2026 | 12:46:34,547 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[103, 109, 105, 109, 203, 106, 108, 105, 108, 107, 104] +03 二月 2026 | 12:46:34,547 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:34,547 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[209, 208, 207] +03 二月 2026 | 12:46:34,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:34,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 101, 209, 208, 209, 206, 204] +03 二月 2026 | 12:46:36,663 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[103, 109, 105, 109, 106, 108, 105, 108, 107, 104, 103] +03 二月 2026 | 12:46:36,663 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:36,663 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[209, 208, 207] +03 二月 2026 | 12:46:36,663 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:36,663 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[203, 201, 101, 206, 208, 207, 208, 209, 206, 204] +03 二月 2026 | 12:46:38,786 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[109, 105, 109, 106, 108, 105, 108, 107, 104, 103, 202] +03 二月 2026 | 12:46:38,786 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:38,786 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[209, 208, 207] +03 二月 2026 | 12:46:38,786 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:38,786 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[203, 201, 101, 206, 103, 208, 207, 208, 209, 206, 204, 104, 102] +03 二月 2026 | 12:46:40,106 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[109, 105, 109, 106, 108, 105, 108, 107, 104, 103, 207] +03 二月 2026 | 12:46:40,106 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:40,106 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[209, 208, 207] +03 二月 2026 | 12:46:40,106 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:40,106 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[203, 202, 201, 101, 206, 103, 106, 208, 207, 208, 209, 206, 204, 104, 102] +03 二月 2026 | 12:46:40,880 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[109, 109, 106, 108, 105, 108, 107, 104] +03 二月 2026 | 12:46:40,880 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:40,880 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[209, 208, 207, 104, 105, 103] +03 二月 2026 | 12:46:40,880 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:40,880 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[203, 202, 207, 201, 101, 206, 103, 106, 104, 208, 207, 208, 209, 206, 204, 104, 102] +03 二月 2026 | 12:46:42,317 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:46:42,494 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[109, 109, 106, 108, 105, 108, 107, 208] +03 二月 2026 | 12:46:42,494 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:42,494 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[209, 208, 207, 104, 105, 103] +03 二月 2026 | 12:46:42,494 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:42,494 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[203, 202, 207, 104, 201, 101, 206, 103, 106, 206, 208, 207, 105, 103, 208, 209, 206, 204, 104, 102] +03 二月 2026 | 12:46:43,609 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[109, 109, 106, 108, 105, 108, 107, 105] +03 二月 2026 | 12:46:43,609 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:43,610 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[209, 208, 207, 104, 105, 103] +03 二月 2026 | 12:46:43,610 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:43,610 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[203, 202, 207, 104, 208, 201, 101, 206, 103, 106, 206, 103, 208, 207, 105, 103, 208, 209, 206, 204, 104, 102] +03 二月 2026 | 12:46:45,125 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[109, 109, 108, 105, 108, 107, 105, 207] +03 二月 2026 | 12:46:45,125 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:46:45,125 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[209, 208, 207, 104, 105, 103] +03 二月 2026 | 12:46:45,125 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:46:45,126 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[203, 202, 207, 104, 208, 106, 201, 101, 206, 103, 106, 206, 103, 201, 208, 207, 105, 103, 208, 209, 206, 204, 104, 102] +03 二月 2026 | 12:46:52,317 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:46:54,967 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:46:55,684 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:46:55,684 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:46:55,684 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:379209 +03 二月 2026 | 12:46:55,999 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:46:57,681 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 12:46:57,714 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:46:57,902 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:46:58,015 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:46:58,015 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:46:58,015 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:46:58,370 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:46:58,481 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:46:58,525 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:46:58,525 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3293000 +03 二月 2026 | 12:46:58,525 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:46:58,525 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:46:58,680 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:46:58,946 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@21dc444f +03 二月 2026 | 12:46:59,732 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:46:59,732 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:46:59,732 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:46:59,775 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:46:59,818 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:46:59,970 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:47:06,021 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:47:06,099 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 12:47:23,484 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:47:41,509 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:47:41,557 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:47:51,827 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:47:51,827 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 12:47:51,954 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:47:51,956 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:47:55,912 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:30 +03 二月 2026 | 12:47:56,093 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:32 +03 二月 2026 | 12:47:56,126 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:47:59,181 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 12:47:59,215 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:47:59,310 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 12:47:59,350 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:47:59,399 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:47:59,509 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:47:59,536 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:47:59,536 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:47:59,536 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:47:59,624 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:47:59,625 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:47:59,625 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:48:00,065 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:48:00,088 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:48:00,184 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:48:00,224 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:48:00,227 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:48:00,228 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3293000 +03 二月 2026 | 12:48:00,228 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:48:00,228 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:48:00,260 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:48:00,260 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 12:48:00,260 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:48:00,260 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:48:00,380 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:48:00,417 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:48:00,651 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@48be7655 +03 二月 2026 | 12:48:00,661 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@74c1bfdb +03 二月 2026 | 12:48:01,408 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:48:01,408 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:48:01,408 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:48:01,441 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:48:01,441 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:48:01,441 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:48:01,450 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:48:01,475 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:48:01,493 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:48:01,511 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:48:01,646 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:48:01,662 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:48:02,368 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:48:02,385 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:48:03,284 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:48:03,284 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:48:03,285 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:685497 +03 二月 2026 | 12:48:03,286 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:48:03,286 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:48:03,286 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:183238 +03 二月 2026 | 12:48:03,621 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:48:03,642 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 12:48:05,257 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:685497 +03 二月 2026 | 12:48:05,290 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:48:05,356 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:183238 +03 二月 2026 | 12:48:05,395 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:48:05,476 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:48:05,555 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:48:05,593 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:48:05,593 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:48:05,593 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:48:05,690 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:48:05,690 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:48:05,690 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:48:05,951 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:48:06,023 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:48:06,087 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:48:06,129 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:48:06,129 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3293000 +03 二月 2026 | 12:48:06,129 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:48:06,129 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:48:06,140 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:48:06,175 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:48:06,175 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2453000 +03 二月 2026 | 12:48:06,175 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:48:06,175 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:48:06,281 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:48:06,332 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:48:06,523 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@48be7655 +03 二月 2026 | 12:48:06,603 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@74c1bfdb +03 二月 2026 | 12:48:07,304 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:48:07,304 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:48:07,304 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:48:07,347 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:48:07,358 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:48:07,358 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:48:07,358 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:48:07,389 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:48:07,393 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:48:07,429 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:48:07,539 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:48:07,578 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:48:10,902 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 12:48:11,017 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:48:15,377 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.252, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=621578300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 12:48:16,182 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 12:48:16,298 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:48:16,497 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 12:48:16,567 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@31227ff9 +03 二月 2026 | 12:48:16,568 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 105, 205, 209, 209, 106, 102, 108, 105, 101, 109, 106, 201, 207] +03 二月 2026 | 12:48:16,568 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:48:16,568 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:48:16,568 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:48:16,568 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 12:48:20,961 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:48:21,508 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.240, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eogVxE1nPJ2bkxic10ZIltDWk4V2a789ccB0a4pGxicdO11pMOP7oUA5Dibpdib3p0vWMibp34xpAicXQmg/132, entrust=false, nick=敬你是条狗, seat=2, ready=0, hp_info={cur_hp=4603000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=177475} +03 二月 2026 | 12:48:22,511 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=177475} +03 二月 2026 | 12:48:22,727 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:48:28,196 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 105, 205, 209, 209, 106, 102, 108, 105, 101, 109, 106, 207, 105] +03 二月 2026 | 12:48:28,196 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:48:28,196 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:48:28,196 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:48:28,196 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 201, 201] +03 二月 2026 | 12:48:30,870 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:48:31,173 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:48:36,809 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.243, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eogVxE1nPJ2bkxic10ZIltDWk4V2a789ccB0a4pGxicdO11pMOP7oUA5Dibpdib3p0vWMibp34xpAicXQmg/132, entrust=false, nick=敬你是条狗, seat=2, ready=0, hp_info={cur_hp=4603000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=177475} +03 二月 2026 | 12:48:38,314 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=177475} +03 二月 2026 | 12:48:38,524 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:48:40,871 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:48:41,384 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:48:47,789 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 105, 209, 209, 106, 102, 108, 105, 101, 109, 106, 207, 105, 102] +03 二月 2026 | 12:48:47,789 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:48:47,789 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:48:47,789 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:48:47,789 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 108, 206, 204, 201, 201] +03 二月 2026 | 12:48:50,871 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:48:51,619 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:48:56,046 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:48:56,126 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 12:49:10,996 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:49:22,033 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:49:30,873 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:49:36,059 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:49:36,108 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 12:52:22,897 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:52:22,938 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:52:33,205 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 12:52:33,205 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:52:33,323 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:52:33,329 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:52:37,252 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:31 +03 二月 2026 | 12:52:37,406 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:52:37,504 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:33 +03 二月 2026 | 12:52:40,707 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 12:52:40,744 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:52:40,793 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 12:52:40,829 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:52:40,938 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:52:40,985 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:52:41,069 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:52:41,069 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:52:41,069 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:52:41,106 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:52:41,106 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:52:41,106 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:52:41,603 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:52:41,606 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:52:41,723 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:52:41,735 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:52:41,771 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:52:41,772 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3293000 +03 二月 2026 | 12:52:41,772 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:52:41,772 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:52:41,782 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:52:41,782 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1997000 +03 二月 2026 | 12:52:41,782 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:52:41,782 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:52:41,929 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:52:41,941 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:52:42,183 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@225d7ec3 +03 二月 2026 | 12:52:42,192 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3a71eacf +03 二月 2026 | 12:52:42,942 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:52:42,943 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:52:42,943 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:52:42,949 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:52:42,949 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:52:42,949 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:52:42,989 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:52:42,995 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:52:43,035 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:52:43,042 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:52:43,203 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:52:43,206 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:52:43,938 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:52:43,954 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:52:44,824 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:52:44,824 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:52:44,824 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:434867 +03 二月 2026 | 12:52:44,861 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:52:44,861 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:52:44,861 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:928568 +03 二月 2026 | 12:52:45,165 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:52:45,206 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 12:52:46,855 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:434867 +03 二月 2026 | 12:52:46,878 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:928568 +03 二月 2026 | 12:52:46,891 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:52:46,915 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:52:47,084 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:52:47,110 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:52:47,203 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:52:47,203 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:52:47,203 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:52:47,241 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:52:47,241 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:52:47,241 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:52:47,586 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:52:47,594 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:52:47,714 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:52:47,717 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:52:47,759 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:52:47,759 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1997000 +03 二月 2026 | 12:52:47,759 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:52:47,759 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:52:47,764 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:52:47,764 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3293000 +03 二月 2026 | 12:52:47,764 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:52:47,764 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:52:47,918 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:52:47,919 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:52:48,163 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@225d7ec3 +03 二月 2026 | 12:52:48,181 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3a71eacf +03 二月 2026 | 12:52:48,932 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:52:48,932 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:52:48,933 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:52:48,933 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:52:48,933 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:52:48,933 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:52:48,979 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:52:48,979 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:52:49,024 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:52:49,025 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:52:49,189 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:52:49,189 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:52:52,676 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 12:52:52,790 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:52:55,340 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.255, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eogVxE1nPJ2bkxic10ZIltDWk4V2a789ccB0a4pGxicdO11pMOP7oUA5Dibpdib3p0vWMibp34xpAicXQmg/132, entrust=false, nick=敬你是条狗, seat=2, ready=0, hp_info={cur_hp=4603000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=177475} +03 二月 2026 | 12:52:57,249 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=177475} +03 二月 2026 | 12:52:57,372 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:52:57,606 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 12:52:57,689 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@229404a5 +03 二月 2026 | 12:52:59,397 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.247, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=622022300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 12:53:02,576 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:53:06,240 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 205, 107, 106, 202, 101, 109, 209, 201, 203, 101, 108, 109, 102] +03 二月 2026 | 12:53:06,240 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:53:06,240 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:53:06,240 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:53:06,240 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209] +03 二月 2026 | 12:53:06,255 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102] +03 二月 2026 | 12:53:06,255 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:53:06,255 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:53:06,255 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:53:06,255 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209] +03 二月 2026 | 12:53:12,568 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:53:12,775 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:53:22,569 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:53:22,888 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:53:32,571 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:53:33,003 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:53:36,129 | ERROR | Thread-29 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:53:43,117 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:53:51,296 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:53:51,338 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:54:01,610 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 12:54:01,611 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:54:01,747 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:54:01,747 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:54:06,340 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:32 +03 二月 2026 | 12:54:06,512 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:54:06,794 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:34 +03 二月 2026 | 12:54:06,816 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:54:06,816 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:54:06,816 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:434867 +03 二月 2026 | 12:54:07,284 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:54:07,432 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:54:07,432 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:54:07,432 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:434867 +03 二月 2026 | 12:54:07,792 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 12:54:09,366 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:434867 +03 二月 2026 | 12:54:09,409 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:54:09,616 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:54:09,719 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:54:09,719 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:54:09,719 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:54:09,817 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:434867 +03 二月 2026 | 12:54:09,854 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:54:10,006 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 12:54:10,124 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:54:10,159 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:54:10,174 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:54:10,289 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:54:10,331 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:54:10,331 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3293000 +03 二月 2026 | 12:54:10,331 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:54:10,331 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:54:10,469 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=434867, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:54:10,508 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:54:10,744 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@35716935 +03 二月 2026 | 12:54:11,462 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:54:11,462 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:54:11,462 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:54:11,502 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:54:11,543 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:54:11,711 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:54:12,032 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=434867, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 12:54:15,154 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 12:54:15,377 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:54:17,224 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.255, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=622022300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 12:54:18,029 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 12:54:18,358 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 12:54:18,546 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 12:54:18,618 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@d48ab18 +03 二月 2026 | 12:54:18,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 207, 103, 203, 204, 207, 105, 206, 207, 202, 102, 104, 109, 104] +03 二月 2026 | 12:54:18,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:54:18,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:54:18,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:54:18,618 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 12:54:21,426 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 207, 103, 203, 204, 207, 206, 207, 202, 102, 104] +03 二月 2026 | 12:54:21,426 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:54:21,426 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 105, 104] +03 二月 2026 | 12:54:21,426 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:54:21,426 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[106, 108, 107] +03 二月 2026 | 12:54:23,524 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:54:26,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 103, 203, 204, 207, 206, 207, 202, 102, 104, 104] +03 二月 2026 | 12:54:26,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:54:26,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[106, 105, 104] +03 二月 2026 | 12:54:26,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:54:26,835 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 105, 104, 108, 107, 207, 205] +03 二月 2026 | 12:54:26,839 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104] +03 二月 2026 | 12:54:26,839 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:54:26,839 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:54:26,839 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:54:26,839 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 105, 104, 108, 107, 207, 205] +03 二月 2026 | 12:54:33,749 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:54:35,075 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:54:43,829 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:54:45,075 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:54:53,911 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:54:55,076 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:03,989 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:05,076 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:14,071 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:15,077 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:24,150 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:25,077 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:34,228 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:35,078 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:44,309 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:45,078 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:54,389 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:55:55,079 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:56:03,295 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 12:56:03,347 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 12:56:13,622 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 12:56:13,622 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 12:56:13,731 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:56:13,747 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 12:56:18,110 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:33 +03 二月 2026 | 12:56:18,253 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:35 +03 二月 2026 | 12:56:18,324 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:56:18,426 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 12:56:21,358 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 12:56:21,400 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:21,451 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 12:56:21,491 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:21,615 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:21,640 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:21,731 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:56:21,741 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:56:21,774 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:56:21,781 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:56:22,504 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:56:22,599 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:56:23,357 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:56:23,357 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:56:23,357 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:569148 +03 二月 2026 | 12:56:23,459 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:56:23,459 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:56:23,459 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:342065 +03 二月 2026 | 12:56:23,709 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 12:56:23,810 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:56:25,314 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:569148 +03 二月 2026 | 12:56:25,354 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:25,435 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:342065 +03 二月 2026 | 12:56:25,477 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:25,563 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:25,631 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:25,665 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:56:25,704 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:56:25,748 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:56:25,791 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:56:33,703 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[209] +03 二月 2026 | 12:56:33,703 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 12:56:33,703 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 12:56:33,703 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 12:56:33,704 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[104, 108, 209, 101, 109, 102, 105, 104, 108, 107, 207, 205, 205, 203] +03 二月 2026 | 12:56:36,179 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 12:56:49,177 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:56:49,254 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:56:52,479 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:569148 +03 二月 2026 | 12:56:52,525 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:52,651 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:569148 +03 二月 2026 | 12:56:52,687 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:52,725 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:52,831 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:52,845 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:56:52,891 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:56:52,932 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:56:52,966 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:56:53,526 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:56:53,595 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:56:54,255 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:56:54,255 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:56:54,255 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:257000 +03 二月 2026 | 12:56:54,332 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:56:54,332 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:56:54,332 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:285482 +03 二月 2026 | 12:56:54,627 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:56:54,654 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 12:56:56,223 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:285482 +03 二月 2026 | 12:56:56,258 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:56,367 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:257000 +03 二月 2026 | 12:56:56,413 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:56,457 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:56,557 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:56:56,590 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:56:56,592 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:56:56,692 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:56:56,739 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:57:09,924 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:57:10,091 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:57:20,061 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:57:20,228 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:57:23,701 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:569148 +03 二月 2026 | 12:57:23,744 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:23,798 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:569148 +03 二月 2026 | 12:57:23,835 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:23,959 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:23,979 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:24,059 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:57:24,094 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:57:24,102 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:57:24,133 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:57:24,736 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:57:24,789 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:57:25,459 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:57:25,459 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:57:25,459 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:278263 +03 二月 2026 | 12:57:25,514 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:57:25,514 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:57:25,514 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:518676 +03 二月 2026 | 12:57:25,816 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 12:57:25,852 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 12:57:27,416 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:278263 +03 二月 2026 | 12:57:27,452 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:27,507 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:518676 +03 二月 2026 | 12:57:27,549 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:27,655 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:27,706 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:27,770 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:57:27,808 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:57:27,808 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:57:27,850 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:57:41,136 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:57:41,207 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:57:51,265 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:57:51,319 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 12:57:55,869 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:569148 +03 二月 2026 | 12:57:55,875 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:569148 +03 二月 2026 | 12:57:55,911 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:55,920 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:56,116 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:56,129 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 12:57:56,218 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 12:57:56,251 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 12:57:56,251 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 12:57:56,251 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 12:57:56,262 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:57:56,595 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 12:57:56,697 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 12:57:56,734 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 12:57:56,734 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2897000 +03 二月 2026 | 12:57:56,734 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 12:57:56,734 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 12:57:56,883 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 12:57:56,912 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:57:57,223 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4a26baea +03 二月 2026 | 12:57:57,822 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:57:57,822 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:57:57,822 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:636471 +03 二月 2026 | 12:57:57,898 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 12:57:57,899 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 12:57:57,899 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 12:57:57,935 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 12:57:57,971 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 12:57:58,131 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 12:57:58,183 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 12:57:58,837 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 12:57:59,615 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 12:57:59,615 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 12:57:59,615 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:563001 +03 二月 2026 | 14:30:36,612 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 14:30:36,657 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 14:30:46,932 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 14:30:46,932 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 14:30:47,044 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 14:30:47,061 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 14:30:51,356 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:36 +03 二月 2026 | 14:30:51,527 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 14:30:51,640 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:34 +03 二月 2026 | 14:30:56,388 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 14:30:56,424 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:30:56,492 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 14:30:56,527 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:30:56,626 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:30:56,675 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:30:56,756 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:30:56,757 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:30:56,757 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:30:56,799 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:30:56,799 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:30:56,799 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:30:57,256 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:30:57,321 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:30:57,380 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:30:57,418 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:30:57,418 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1601000 +03 二月 2026 | 14:30:57,418 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:30:57,418 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:30:57,444 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:30:57,484 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:30:57,484 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2897000 +03 二月 2026 | 14:30:57,484 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:30:57,484 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:30:57,585 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:30:57,635 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:30:57,818 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@435a628f +03 二月 2026 | 14:30:57,873 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@59cb77dc +03 二月 2026 | 14:30:58,526 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:30:58,527 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:30:58,527 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:30:58,561 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:30:58,580 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:30:58,581 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:30:58,581 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:30:58,598 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:30:58,620 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:30:58,661 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:30:58,738 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:30:58,814 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:30:59,428 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:30:59,468 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:31:00,316 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:31:00,316 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:31:00,316 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:797522 +03 二月 2026 | 14:31:00,340 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:31:00,341 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:31:00,341 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:697842 +03 二月 2026 | 14:31:00,648 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:31:00,668 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:31:02,208 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:697842 +03 二月 2026 | 14:31:02,242 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:31:02,271 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:797522 +03 二月 2026 | 14:31:02,305 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:31:02,444 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:31:02,454 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:31:02,568 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:31:02,569 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:31:02,569 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:31:02,575 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:31:02,575 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:31:02,575 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:31:02,923 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:31:02,935 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:31:03,046 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:31:03,063 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:31:03,084 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:31:03,084 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1601000 +03 二月 2026 | 14:31:03,084 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:31:03,085 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:31:03,105 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:31:03,105 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2897000 +03 二月 2026 | 14:31:03,105 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:31:03,105 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:31:03,235 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:31:03,274 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:31:03,474 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@435a628f +03 二月 2026 | 14:31:03,516 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@59cb77dc +03 二月 2026 | 14:31:04,181 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:31:04,181 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:31:04,181 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:31:04,219 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:31:04,219 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:31:04,219 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:31:04,219 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:31:04,254 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:31:04,260 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:31:04,300 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:31:04,393 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:31:04,448 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:31:07,804 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 14:31:07,908 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 14:31:08,082 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 14:31:10,429 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.252, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83eogVxE1nPJ2bkxic10ZIltDWk4V2a789ccB0a4pGxicdO11pMOP7oUA5Dibpdib3p0vWMibp34xpAicXQmg/132, entrust=false, nick=敬你是条狗, seat=2, ready=0, hp_info={cur_hp=4987000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=177475} +03 二月 2026 | 14:31:11,032 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=177475} +03 二月 2026 | 14:31:11,136 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 14:31:11,309 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 14:31:13,601 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1---------com.robotcm.taurus.client.MessageResponse@3b2365be +03 二月 2026 | 14:31:13,601 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1getKey---------{robortInfo}:132788 +03 二月 2026 | 14:31:13,601 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1key---------g{0}:play:0 +03 二月 2026 | 14:31:13,601 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1aid---------132788 +03 二月 2026 | 14:31:17,794 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:31:27,836 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:31:27,899 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:31:28,126 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:31:28,126 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:31:28,126 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:697842 +03 二月 2026 | 14:31:28,202 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:31:28,202 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:31:28,202 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:697842 +03 二月 2026 | 14:31:28,931 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:31:28,935 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:31:30,770 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:697842 +03 二月 2026 | 14:31:30,818 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:31:30,858 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:697842 +03 二月 2026 | 14:31:30,897 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:31:31,027 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:31:31,068 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:31:31,151 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:31:31,152 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:31:31,152 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:31:31,198 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:31:31,238 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:31:31,510 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:31:31,548 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=697842, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:31:31,641 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:31:31,677 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:31:31,677 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2897000 +03 二月 2026 | 14:31:31,677 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:31:31,677 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:31:31,857 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:31:32,109 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@59cb77dc +03 二月 2026 | 14:31:32,879 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:31:32,879 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:31:32,879 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:31:32,915 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:31:32,950 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:31:33,129 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:31:33,458 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=697842, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:31:36,024 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 14:31:36,040 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 14:31:40,025 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:697842 +03 二月 2026 | 14:31:40,071 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:31:40,298 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:31:40,422 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:31:40,422 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:31:40,422 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:31:40,777 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:31:40,901 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:31:40,935 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:31:40,935 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1601000 +03 二月 2026 | 14:31:40,935 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:31:40,935 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:31:41,115 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:31:41,174 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:379209 +03 二月 2026 | 14:31:41,213 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:31:41,357 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@435a628f +03 二月 2026 | 14:31:41,424 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:31:41,553 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:31:41,594 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:31:42,078 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:31:42,078 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:31:42,078 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:31:42,113 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:31:42,149 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:31:42,322 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:31:42,326 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:31:43,009 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:31:43,107 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:31:43,107 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:31:43,107 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:349419 +03 二月 2026 | 14:31:43,484 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:31:43,797 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:31:43,797 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:31:43,797 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:305149 +03 二月 2026 | 14:31:44,203 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:31:45,192 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:349419 +03 二月 2026 | 14:31:45,238 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:31:45,452 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:31:45,575 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:31:45,621 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:31:45,875 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:305149 +03 二月 2026 | 14:31:45,915 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:31:46,084 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:31:46,211 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:31:46,211 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:31:46,211 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:31:46,569 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:31:46,693 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:31:46,731 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:31:46,731 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1601000 +03 二月 2026 | 14:31:46,731 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:31:46,731 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:31:46,906 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:31:47,134 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@435a628f +03 二月 2026 | 14:31:47,823 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:31:47,823 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:31:47,823 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:31:47,862 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:31:47,900 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:31:48,058 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:31:59,230 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:31:59,230 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:31:59,230 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:797522 +03 二月 2026 | 14:31:59,635 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:32:01,397 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:797522 +03 二月 2026 | 14:32:01,444 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:32:01,746 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:32:01,748 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:32:01,748 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:32:01,748 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:797522 +03 二月 2026 | 14:32:01,877 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:32:01,924 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:32:02,125 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:32:02,263 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=797522, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:32:03,756 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:797522 +03 二月 2026 | 14:32:03,795 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:32:04,117 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:32:04,247 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:32:04,248 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:32:04,248 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:32:04,622 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:32:04,753 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:32:04,791 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:32:04,791 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1601000 +03 二月 2026 | 14:32:04,791 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:32:04,791 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:32:04,962 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:32:05,204 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@435a628f +03 二月 2026 | 14:32:06,049 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:32:06,049 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:32:06,049 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:32:06,087 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:32:06,129 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:32:06,283 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:32:06,608 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=797522, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:32:11,403 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:697842 +03 二月 2026 | 14:32:11,449 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:32:11,679 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:32:11,807 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:32:11,853 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:32:12,564 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:32:13,375 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:32:13,375 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:32:13,375 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:857542 +03 二月 2026 | 14:32:13,780 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:32:14,707 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:697842 +03 二月 2026 | 14:32:14,745 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:32:14,953 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:32:15,077 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:32:15,116 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:32:15,564 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:857542 +03 二月 2026 | 14:32:15,612 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:32:15,788 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:32:15,828 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:32:15,913 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:32:15,959 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:32:16,606 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:32:16,606 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:32:16,606 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:904059 +03 二月 2026 | 14:32:16,956 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:32:18,665 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:904059 +03 二月 2026 | 14:32:18,703 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:32:18,911 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:32:19,033 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:32:19,073 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:33:43,310 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 14:33:43,354 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 14:33:53,632 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 14:33:53,632 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 14:33:53,741 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 14:33:53,758 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 14:33:57,705 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:35 +03 二月 2026 | 14:33:57,821 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 14:33:57,897 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:37 +03 二月 2026 | 14:34:00,988 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:34:01,076 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:34:01,832 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:34:01,833 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:34:01,833 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:873770 +03 二月 2026 | 14:34:01,938 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:34:01,938 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:34:01,938 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:317743 +03 二月 2026 | 14:34:02,163 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:34:02,292 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:34:03,709 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:873770 +03 二月 2026 | 14:34:03,745 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:34:03,934 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:34:03,994 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:317743 +03 二月 2026 | 14:34:04,034 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:34:04,053 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:34:04,053 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:34:04,053 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:34:04,191 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:34:04,341 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:34:04,341 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:34:04,341 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:34:04,411 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:34:04,531 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:34:04,571 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:34:04,571 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2897000 +03 二月 2026 | 14:34:04,571 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:34:04,571 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:34:04,713 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:34:04,726 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:34:04,862 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:34:04,901 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:34:04,901 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1601000 +03 二月 2026 | 14:34:04,902 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:34:04,902 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:34:04,951 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5fe326cf +03 二月 2026 | 14:34:05,062 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:34:05,321 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b8ae67f +03 二月 2026 | 14:34:05,727 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:34:05,727 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:34:05,727 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:34:05,765 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:34:05,804 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:34:05,954 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:34:06,092 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:34:06,092 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:34:06,092 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:34:06,131 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:34:06,171 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:34:06,329 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:34:09,366 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 14:34:09,480 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:34:19,686 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:34:29,410 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:34:29,680 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:34:29,680 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:34:29,680 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:317743 +03 二月 2026 | 14:34:29,794 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:34:30,226 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:34:30,458 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:34:30,458 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:34:30,458 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:317743 +03 二月 2026 | 14:34:30,895 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:34:32,236 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:317743 +03 二月 2026 | 14:34:32,283 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:34:32,506 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:34:32,630 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:317743 +03 二月 2026 | 14:34:32,656 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:34:32,671 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:34:32,703 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:34:32,829 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:34:32,978 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:34:32,979 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:34:32,979 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:34:33,028 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=317743, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:34:33,396 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:34:33,548 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:34:33,593 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:34:33,594 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1601000 +03 二月 2026 | 14:34:33,594 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:34:33,594 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:34:33,755 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:34:34,008 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b8ae67f +03 二月 2026 | 14:34:34,774 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:34:34,774 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:34:34,775 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:34:34,818 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:34:34,857 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:34:35,015 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:34:35,360 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=317743, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:34:36,155 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 14:34:36,405 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:34:36,444 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 14:34:36,787 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:34:36,832 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 14:34:37,272 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:34:37,317 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 14:34:37,986 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:34:38,427 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 14:34:38,869 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:34:38,911 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 14:34:39,323 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:34:39,364 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 14:34:39,839 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:34:39,883 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 14:34:40,311 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:34:46,070 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:34:48,402 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:34:56,252 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:34:56,694 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:34:56,694 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:34:56,695 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:317743 +03 二月 2026 | 14:34:57,135 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:34:58,507 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:34:58,809 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:317743 +03 二月 2026 | 14:34:58,847 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:34:58,944 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:34:58,944 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:34:58,944 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:317743 +03 二月 2026 | 14:34:59,046 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:34:59,169 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:34:59,209 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:34:59,491 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:34:59,578 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=317743, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:35:01,133 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:317743 +03 二月 2026 | 14:35:01,168 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:35:01,359 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:35:01,475 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:35:01,475 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:35:01,475 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:35:01,820 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:35:01,935 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:35:01,974 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:35:01,983 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1601000 +03 二月 2026 | 14:35:01,983 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:35:01,983 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:35:02,137 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:35:02,357 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b8ae67f +03 二月 2026 | 14:35:03,020 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:35:03,020 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:35:03,020 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:35:03,059 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:35:03,098 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:35:03,246 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:35:03,607 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=317743, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:35:06,673 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=132788} +03 二月 2026 | 14:35:06,903 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:35:06,940 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=132788} +03 二月 2026 | 14:35:07,371 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:35:07,418 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=132788} +03 二月 2026 | 14:35:07,790 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:35:07,827 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=132788} +03 二月 2026 | 14:35:08,214 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:35:08,250 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=132788} +03 二月 2026 | 14:35:08,661 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:35:08,703 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=132788} +03 二月 2026 | 14:35:09,139 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:35:09,181 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=132788} +03 二月 2026 | 14:35:09,571 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:35:09,611 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=132788} +03 二月 2026 | 14:35:10,044 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:35:10,243 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 14:35:10,321 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3908a5aa +03 二月 2026 | 14:35:10,359 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++132788 +03 二月 2026 | 14:35:10,474 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 14:35:10,513 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 14:35:10,551 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3908a5aa +03 二月 2026 | 14:35:10,589 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 14:35:10,666 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3908a5aa +03 二月 2026 | 14:35:10,703 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++132788 +03 二月 2026 | 14:35:10,815 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 14:35:10,853 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 14:35:10,891 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3908a5aa +03 二月 2026 | 14:35:10,929 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 14:35:11,004 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3908a5aa +03 二月 2026 | 14:35:11,046 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++132788 +03 二月 2026 | 14:35:11,165 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 14:35:11,204 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 14:35:11,241 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3908a5aa +03 二月 2026 | 14:35:11,278 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 14:35:11,354 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3908a5aa +03 二月 2026 | 14:35:11,391 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++132788 +03 二月 2026 | 14:35:11,504 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 14:35:11,543 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 14:35:11,581 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@3908a5aa +03 二月 2026 | 14:35:12,618 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:35:13,404 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 204, 109, 104, 105, 103, 204, 103, 102, 206, 205, 207, 108, 205, 204, 109, 104, 105, 103, 204, 103, 102, 206, 205, 207, 108, 205, 204, 109, 104, 105, 103, 204, 103, 102, 206, 205, 207, 108, 205, 204, 109, 104, 105, 103, 204, 103, 102, 206, 205, 207, 108, 106, 106, 106, 106] +03 二月 2026 | 14:35:13,404 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 14:35:13,404 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 14:35:13,404 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 14:35:13,404 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209] +03 二月 2026 | 14:35:16,648 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:35:22,618 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:35:26,649 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:35:32,618 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:35:36,649 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:44:08,156 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 14:44:08,197 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 14:44:18,471 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 14:44:18,471 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 14:44:18,592 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 14:44:18,606 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 14:44:23,104 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:36 +03 二月 2026 | 14:44:23,271 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:38 +03 二月 2026 | 14:44:23,274 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 14:44:26,859 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:873770 +03 二月 2026 | 14:44:26,895 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [168417,112233]] +03 二月 2026 | 14:44:26,901 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:873770 +03 二月 2026 | 14:44:26,938 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [168417,112233]] +03 二月 2026 | 14:44:27,097 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [168417,112233]] +03 二月 2026 | 14:44:27,097 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [168417,112233]] +03 二月 2026 | 14:44:27,202 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:44:27,217 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:44:27,217 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:44:27,217 | INFO | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room full:g{670680}:m132788 room_key:room:873770 +03 二月 2026 | 14:44:27,217 | INFO | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom enter group fail, room open close:g{670680}:m132788 room_key:room:873770 +03 二月 2026 | 14:44:27,217 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:44:27,239 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:44:27,708 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:44:27,812 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:44:27,850 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:44:27,855 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:44:27,856 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1600000 +03 二月 2026 | 14:44:27,856 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:44:27,856 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:44:28,013 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:44:28,218 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2f5adeb2 +03 二月 2026 | 14:44:28,703 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:44:28,703 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:44:28,703 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:400815 +03 二月 2026 | 14:44:28,851 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:44:28,852 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:44:28,852 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:44:28,894 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:44:28,957 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:44:29,030 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:44:29,119 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:44:29,812 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:44:30,550 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:44:30,550 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:44:30,550 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:386143 +03 二月 2026 | 14:44:30,664 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:400815 +03 二月 2026 | 14:44:30,700 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:44:30,877 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:44:30,894 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:44:30,997 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:44:31,034 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:44:32,385 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:386143 +03 二月 2026 | 14:44:32,422 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:44:32,616 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:44:32,721 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:44:32,722 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:44:32,722 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:44:33,057 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:44:33,162 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:44:33,205 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:44:33,205 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1600000 +03 二月 2026 | 14:44:33,205 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:44:33,205 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:44:33,363 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:44:33,584 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2f5adeb2 +03 二月 2026 | 14:44:34,209 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:44:34,209 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:44:34,209 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:44:34,251 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:44:34,294 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:44:34,454 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:44:37,845 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 14:44:37,958 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:44:47,799 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:44:54,490 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:45:31,290 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 14:45:31,334 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 14:45:41,612 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 14:45:41,612 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 14:45:41,741 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 14:45:41,744 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 14:45:45,859 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:37 +03 二月 2026 | 14:45:46,008 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 14:45:46,090 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:39 +03 二月 2026 | 14:45:49,063 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:45:49,158 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:45:50,020 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:45:50,021 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:45:50,021 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:757940 +03 二月 2026 | 14:45:50,140 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:45:50,140 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:45:50,140 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:327375 +03 二月 2026 | 14:45:50,379 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:45:50,503 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:45:52,011 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:757940 +03 二月 2026 | 14:45:52,051 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:45:52,233 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:327375 +03 二月 2026 | 14:45:52,258 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:45:52,270 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:45:52,378 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:45:52,378 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:45:52,378 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:45:52,428 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:45:52,541 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:45:52,542 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:45:52,542 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:45:52,743 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:45:52,846 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:45:52,858 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:45:52,901 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:45:52,903 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:45:52,903 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:45:52,903 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:45:52,968 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:45:53,005 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:45:53,006 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1600000 +03 二月 2026 | 14:45:53,006 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:45:53,006 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:45:53,073 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:45:53,143 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:45:53,297 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:45:53,373 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@263c4d72 +03 二月 2026 | 14:45:53,979 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:45:53,980 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:45:53,980 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:45:54,022 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:45:54,051 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:45:54,051 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:45:54,051 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:45:54,065 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:45:54,089 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:45:54,126 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:45:54,232 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:45:54,267 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:45:57,665 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 14:45:57,781 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 14:46:00,135 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.252, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=622404300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 14:46:03,014 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1---------com.robotcm.taurus.client.MessageResponse@2e4c45ec +03 二月 2026 | 14:46:03,014 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1getKey---------{robortInfo}:168417 +03 二月 2026 | 14:46:03,014 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1key---------g{null}:play:null +03 二月 2026 | 14:46:03,014 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1aid---------168417 +03 二月 2026 | 14:46:07,609 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:46:11,612 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.247, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=622404300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 14:46:11,612 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.247, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=622404300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 14:46:17,727 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:46:17,853 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:46:20,683 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:327375 +03 二月 2026 | 14:46:20,726 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 14:46:20,918 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 14:46:21,033 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:46:21,034 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:46:21,034 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:46:21,156 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:327375 +03 二月 2026 | 14:46:21,193 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 14:46:21,340 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 14:46:21,377 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:46:21,456 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:46:21,496 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:46:21,498 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:46:21,534 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:46:21,534 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:46:21,534 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:46:21,534 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:46:21,681 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:46:21,930 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:46:22,145 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:46:22,666 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:46:22,666 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:46:22,666 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:46:22,703 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:46:22,740 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:46:22,870 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:46:22,882 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:46:22,882 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:841978 +03 二月 2026 | 14:46:22,903 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:46:23,230 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:46:23,587 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:46:24,320 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:46:24,320 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:46:24,320 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:590290 +03 二月 2026 | 14:46:24,797 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:46:25,027 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:841978 +03 二月 2026 | 14:46:25,067 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:46:25,248 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:46:25,364 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 14:46:25,403 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:46:26,024 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 14:46:26,102 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 14:46:26,474 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:590290 +03 二月 2026 | 14:46:26,514 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:46:26,699 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:46:26,817 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:46:26,817 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:46:26,818 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:46:27,160 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:46:27,276 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:46:27,313 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:46:27,313 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:46:27,313 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:46:27,313 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:46:27,459 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:46:27,697 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:46:28,392 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:46:28,392 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:46:28,392 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:46:28,429 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:46:28,466 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:46:28,620 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:46:51,600 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:590290 +03 二月 2026 | 14:46:51,634 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:46:51,827 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:46:51,941 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:46:51,941 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:46:51,941 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:46:52,281 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:46:52,396 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:46:52,433 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:46:52,433 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1600000 +03 二月 2026 | 14:46:52,433 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:46:52,433 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:46:52,591 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:46:52,819 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@263c4d72 +03 二月 2026 | 14:46:53,510 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:46:53,510 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:46:53,510 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:46:53,555 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:46:53,594 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:46:53,744 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:46:54,420 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:46:54,831 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:590290 +03 二月 2026 | 14:46:54,867 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:46:55,020 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:46:55,143 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:46:55,144 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:46:55,144 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:46:55,160 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:46:55,160 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:46:55,160 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:795375 +03 二月 2026 | 14:46:55,487 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:46:55,499 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:46:55,618 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:46:55,657 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:46:55,657 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:46:55,657 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:46:55,657 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:46:55,816 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:46:56,036 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:46:56,747 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:46:56,747 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:46:56,747 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:46:56,783 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:46:56,821 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:46:56,964 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:46:57,026 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:795375 +03 二月 2026 | 14:46:57,060 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:46:57,253 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:46:57,368 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:46:57,368 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:46:57,368 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:46:57,632 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:46:57,668 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:46:57,788 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:46:57,827 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:46:57,827 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1600000 +03 二月 2026 | 14:46:57,827 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:46:57,827 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:46:57,986 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:46:58,220 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@263c4d72 +03 二月 2026 | 14:46:58,367 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:46:58,367 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:46:58,367 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:850929 +03 二月 2026 | 14:46:58,694 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:46:58,921 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:46:58,921 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:46:58,923 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:46:58,960 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:46:58,997 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:46:59,140 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:47:00,210 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 14:47:00,244 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:47:00,428 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:47:00,543 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:47:00,543 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:47:00,543 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:47:00,877 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:47:00,992 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:47:01,027 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:47:01,027 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:47:01,027 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:47:01,027 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:47:01,178 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:47:01,403 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:47:02,092 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:47:02,093 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:47:02,093 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:47:02,127 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:47:02,162 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:47:02,301 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:47:12,526 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 14:47:12,704 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:47:12,704 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:47:12,704 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:590290 +03 二月 2026 | 14:47:13,103 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:47:14,620 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:590290 +03 二月 2026 | 14:47:14,655 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:14,853 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:14,984 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:47:14,984 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:47:14,984 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:47:15,327 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:47:15,449 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:47:15,484 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:47:15,484 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:1600000 +03 二月 2026 | 14:47:15,484 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:47:15,484 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:47:15,636 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:47:15,865 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:47:15,866 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:47:15,866 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:590290 +03 二月 2026 | 14:47:15,995 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@263c4d72 +03 二月 2026 | 14:47:16,455 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:47:16,690 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:47:16,690 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:47:16,690 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:47:16,725 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:47:16,760 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:47:16,899 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:47:17,200 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=590290, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:47:18,005 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:590290 +03 二月 2026 | 14:47:18,039 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:18,225 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:18,332 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:47:18,332 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:47:18,332 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:47:18,678 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:47:18,786 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:47:18,829 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:47:18,829 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:47:18,829 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:47:18,829 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:47:18,980 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:47:19,189 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:47:19,816 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:47:19,816 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:47:19,816 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:47:19,854 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:47:19,892 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:47:20,039 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:47:20,330 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=590290, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:47:20,362 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=132788} +03 二月 2026 | 14:47:20,636 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 14:47:20,886 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 14:47:20,886 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------132788 +03 二月 2026 | 14:47:20,984 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 14:47:21,191 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++132788 +03 二月 2026 | 14:47:21,337 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 14:47:21,386 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 14:47:21,435 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@23f3188b +03 二月 2026 | 14:47:22,555 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[103, 207, 106, 102, 108, 206, 107, 208, 102, 102, 108] +03 二月 2026 | 14:47:22,555 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 14:47:22,555 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 208, 206] +03 二月 2026 | 14:47:22,555 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 14:47:22,555 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[207] +03 二月 2026 | 14:47:24,560 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[103, 207, 106, 102, 206, 107, 208, 102, 102, 108, 204] +03 二月 2026 | 14:47:24,561 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 14:47:24,561 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[207, 208, 206] +03 二月 2026 | 14:47:24,561 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 14:47:24,561 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[108, 108, 208, 206] +03 二月 2026 | 14:47:32,898 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 14:47:32,934 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:47:33,119 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:47:33,239 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:47:33,240 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:47:33,240 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:47:33,372 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:47:33,595 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:47:33,718 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:47:33,755 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:47:33,755 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2014000 +03 二月 2026 | 14:47:33,755 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:47:33,755 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:47:33,904 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:47:34,133 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@263c4d72 +03 二月 2026 | 14:47:34,804 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:47:34,804 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:47:34,804 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:47:34,842 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:47:34,880 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:47:35,027 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:47:35,722 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:47:36,461 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:47:36,461 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:47:36,461 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:805509 +03 二月 2026 | 14:47:36,796 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:47:38,339 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:805509 +03 二月 2026 | 14:47:38,374 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:47:38,560 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:47:38,684 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:47:38,684 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:47:38,684 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:47:39,038 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:47:39,158 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:47:39,196 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:47:39,196 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2014000 +03 二月 2026 | 14:47:39,196 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:47:39,196 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:47:39,348 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:47:39,578 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@263c4d72 +03 二月 2026 | 14:47:40,244 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:47:40,244 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:47:40,245 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:47:40,283 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:47:40,321 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:47:40,468 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:47:43,512 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 14:47:43,833 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:47:43,833 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:47:43,833 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:850929 +03 二月 2026 | 14:47:44,216 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:47:45,902 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 14:47:45,948 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:46,049 | ERROR | Thread-37 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 14:47:46,117 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 14:47:46,154 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:46,259 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:47:46,259 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:47:46,260 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:47:46,586 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:47:46,691 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:47:46,729 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:47:46,729 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:47:46,730 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:47:46,730 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:47:46,889 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:47:47,097 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:47:47,729 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:47:47,729 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:47:47,729 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:47:47,768 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:47:47,807 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:47:47,973 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:47:48,287 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=850929, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:47:54,193 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:47:54,194 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:47:54,194 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:850929 +03 二月 2026 | 14:47:54,422 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 14:47:54,467 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:54,517 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:47:54,673 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:54,780 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:47:54,780 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:47:54,780 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:47:55,289 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:47:55,404 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:47:55,438 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:47:55,438 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:47:55,438 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:47:55,438 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:47:55,598 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:47:55,826 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:47:56,294 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 14:47:56,330 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:56,487 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:47:56,487 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:47:56,487 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:47:56,515 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:47:56,522 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:47:56,555 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:47:56,757 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:47:56,757 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:47:56,757 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:47:56,840 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:47:57,074 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:47:57,180 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:47:57,214 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:47:57,214 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2014000 +03 二月 2026 | 14:47:57,214 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:47:57,215 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:47:57,367 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:47:57,473 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:47:57,601 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@263c4d72 +03 二月 2026 | 14:47:58,257 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:47:58,257 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:47:58,257 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:276115 +03 二月 2026 | 14:47:58,278 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:47:58,278 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:47:58,278 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:47:58,312 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:47:58,347 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:47:58,489 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:47:58,646 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:47:58,781 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=850929, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:48:00,303 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:276115 +03 二月 2026 | 14:48:00,355 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:48:00,571 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:48:00,686 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:48:00,686 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:48:00,686 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:48:01,018 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:48:01,133 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:48:01,167 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:48:01,167 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:48:01,168 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:48:01,168 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:48:01,337 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:48:01,566 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:48:02,261 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:48:02,261 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:48:02,261 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:48:02,295 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:48:02,330 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:48:02,493 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:48:04,839 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 14:48:04,875 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:48:05,069 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:48:05,186 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:48:05,186 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:48:05,186 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:48:05,520 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:48:05,640 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:48:05,674 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:48:05,675 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2014000 +03 二月 2026 | 14:48:05,675 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:48:05,675 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:48:05,835 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:48:06,063 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@263c4d72 +03 二月 2026 | 14:48:06,750 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:48:06,750 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:48:06,750 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:48:06,785 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:48:06,820 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:48:06,961 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:48:07,655 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 14:48:08,414 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:48:08,414 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:48:08,414 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:266152 +03 二月 2026 | 14:48:08,745 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:48:10,307 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:266152 +03 二月 2026 | 14:48:10,341 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:48:10,537 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 14:48:10,651 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:48:10,651 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:48:10,651 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:48:10,983 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:48:11,097 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:48:11,132 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:48:11,132 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2014000 +03 二月 2026 | 14:48:11,132 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:48:11,132 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:48:11,291 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:48:11,520 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@263c4d72 +03 二月 2026 | 14:48:12,206 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:48:12,206 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:48:12,206 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:48:12,241 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:48:12,277 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:48:12,420 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:48:16,068 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:48:16,068 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:48:16,068 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:850929 +03 二月 2026 | 14:48:16,461 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 14:48:18,138 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 14:48:18,184 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:48:18,399 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 14:48:18,523 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:48:18,524 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:48:18,524 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:48:18,901 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:48:19,021 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:48:19,054 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:48:19,054 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:48:19,054 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:48:19,055 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:48:19,223 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:48:19,457 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:48:20,161 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 14:48:20,161 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 14:48:20,161 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 14:48:20,196 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 14:48:20,231 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 14:48:20,389 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 14:48:20,712 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=850929, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 14:48:25,905 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 14:48:26,108 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 14:48:26,108 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 14:48:26,108 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:850929 +03 二月 2026 | 14:48:26,532 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 14:48:27,109 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 14:48:27,153 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:48:27,362 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:48:27,482 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:48:27,482 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:48:27,482 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:48:27,827 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 14:48:27,947 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 14:48:27,982 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 14:48:27,982 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 14:48:27,982 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 14:48:27,982 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 14:48:28,151 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 14:48:28,159 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 14:48:28,188 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:48:28,346 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 14:48:28,394 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@743372e9 +03 二月 2026 | 14:48:28,468 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 14:48:28,468 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 14:48:28,468 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 14:48:28,783 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:08:38,299 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 15:08:38,341 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 15:08:48,611 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 15:08:48,611 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 15:08:48,733 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 15:08:48,741 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 15:08:53,006 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:38 +03 二月 2026 | 15:08:53,104 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:40 +03 二月 2026 | 15:08:53,216 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 15:08:53,317 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 15:08:53,452 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:08:53,452 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:08:53,452 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:850929 +03 二月 2026 | 15:08:53,624 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:08:53,624 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:08:53,624 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:850929 +03 二月 2026 | 15:08:53,955 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:08:54,101 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:08:56,054 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 15:08:56,091 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:08:56,216 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:850929 +03 二月 2026 | 15:08:56,256 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:08:56,279 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:08:56,406 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:08:56,406 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:08:56,406 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:08:56,410 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:08:56,529 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:08:56,529 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:08:56,530 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:08:56,905 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:08:56,988 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:08:57,023 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:08:57,066 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:08:57,067 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:08:57,067 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:08:57,067 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:08:57,116 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:08:57,149 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:08:57,149 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2014000 +03 二月 2026 | 15:08:57,149 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:08:57,149 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:08:57,215 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:08:57,312 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:08:57,454 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51422871 +03 二月 2026 | 15:08:57,564 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@36d05f27 +03 二月 2026 | 15:08:58,195 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:08:58,195 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:08:58,195 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:08:58,236 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:08:58,279 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:08:58,289 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:08:58,289 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:08:58,289 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:08:58,325 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:08:58,359 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:08:58,440 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:08:58,506 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:08:58,767 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=850929, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:08:58,805 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=850929, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:09:00,945 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=120.229.85.158, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/PiajxSqBRaEJcIGNnZQxAzTwQcxFzanusUOn7kRMG2WEQSFbEgh67vIrA0voW3M7S5nIRj0wKDL1Ih3MSiaQDjPFVZeMPpHd2QmWh3cO3w10pZYabBtubC3A/132, entrust=false, nick= 小麻花 0点 九点免打扰 , seat=2, ready=0, hp_info={cur_hp=2014000, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=132788} +03 二月 2026 | 15:09:01,850 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 15:09:02,093 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 15:09:02,294 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:09:02,451 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 15:09:02,568 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 15:09:02,762 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:09:16,152 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 15:09:16,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 15:09:21,898 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:09:21,923 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:09:24,445 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:795375 +03 二月 2026 | 15:09:24,485 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:09:24,690 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:09:24,811 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:09:24,811 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:09:24,811 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:09:25,308 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:09:25,483 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:09:25,521 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:09:25,521 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2014000 +03 二月 2026 | 15:09:25,521 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:09:25,521 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:09:25,685 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:09:25,928 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@36d05f27 +03 二月 2026 | 15:09:26,655 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:09:26,655 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:09:26,655 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:09:26,689 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:09:26,723 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:09:26,871 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:09:27,573 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 15:09:28,478 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:09:28,478 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:09:28,478 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:914249 +03 二月 2026 | 15:09:28,832 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:09:30,509 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:914249 +03 二月 2026 | 15:09:30,550 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:09:30,753 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:09:30,873 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:09:30,873 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:09:30,874 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:09:55,396 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 15:09:55,438 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 15:10:05,728 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 15:10:05,728 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 15:10:05,837 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 15:10:05,854 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 15:10:09,966 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:39 +03 二月 2026 | 15:10:10,140 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:41 +03 二月 2026 | 15:10:10,207 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 15:10:13,320 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:914249 +03 二月 2026 | 15:10:13,355 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:10:13,451 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:914249 +03 二月 2026 | 15:10:13,491 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:10:13,543 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:10:13,649 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:10:13,657 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:10:13,658 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:10:13,658 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:10:13,774 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:10:13,775 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:10:13,775 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:10:14,129 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:10:14,244 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:10:14,260 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:10:14,289 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:10:14,289 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:10:14,289 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:10:14,289 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:10:14,374 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:10:14,415 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:10:14,415 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2014000 +03 二月 2026 | 15:10:14,415 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:10:14,415 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:10:14,449 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:10:14,574 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:10:14,696 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1ba40e86 +03 二月 2026 | 15:10:14,816 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@20ab432c +03 二月 2026 | 15:10:15,434 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:10:15,434 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:10:15,434 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:10:15,475 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:10:15,517 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:10:15,543 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:10:15,544 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:10:15,544 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:10:15,585 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:10:15,626 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:10:15,670 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:10:15,786 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:10:16,423 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 15:10:16,484 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 15:10:17,295 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:10:17,296 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:10:17,296 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:562430 +03 二月 2026 | 15:10:17,342 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:10:17,342 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:10:17,342 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:829600 +03 二月 2026 | 15:10:17,649 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:10:17,675 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:10:19,257 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:562430 +03 二月 2026 | 15:10:19,293 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:10:19,345 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:829600 +03 二月 2026 | 15:10:19,384 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:10:19,483 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:10:19,541 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:10:19,609 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:10:19,609 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:10:19,609 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:10:19,656 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:10:19,657 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:10:19,657 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:10:19,977 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:10:20,007 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:10:20,091 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:10:20,132 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:10:20,133 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:10:20,133 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:10:20,133 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:10:20,133 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:10:20,172 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:10:20,172 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2014000 +03 二月 2026 | 15:10:20,172 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:10:20,172 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:10:20,285 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:10:20,331 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:10:20,533 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1ba40e86 +03 二月 2026 | 15:10:20,575 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@20ab432c +03 二月 2026 | 15:10:21,276 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:10:21,276 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:10:21,276 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:10:21,317 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:10:21,317 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:10:21,317 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:10:21,317 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:10:21,358 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:10:21,358 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:10:21,398 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:10:21,514 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:10:21,559 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:10:24,979 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 15:10:25,100 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:10:25,296 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:10:28,570 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.252, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=621978300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 15:10:29,576 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 15:10:29,691 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:10:29,889 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:10:29,889 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 15:10:29,967 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 15:10:30,166 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 15:10:30,286 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 15:10:30,326 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 15:10:30,365 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@1e7b4a45 +03 二月 2026 | 15:10:30,366 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 107, 207, 205, 103, 201, 209, 207, 107, 106, 108, 109, 101, 204] +03 二月 2026 | 15:10:30,366 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 15:10:30,366 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 15:10:30,366 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 15:10:30,366 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 15:10:33,109 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 107, 207, 205, 103, 209, 207, 107, 106, 108, 109, 101, 204, 109] +03 二月 2026 | 15:10:33,109 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 15:10:33,109 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 15:10:33,109 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 15:10:33,109 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 101] +03 二月 2026 | 15:10:34,926 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:10:36,181 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 107, 205, 103, 209, 207, 107, 106, 108, 109, 101, 204, 109, 106] +03 二月 2026 | 15:10:36,181 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 15:10:36,181 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 15:10:36,181 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 15:10:36,181 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 101, 201, 207, 207] +03 二月 2026 | 15:10:36,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[106] +03 二月 2026 | 15:10:36,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 15:10:36,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 15:10:36,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 15:10:36,182 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 101, 201, 207, 207] +03 二月 2026 | 15:10:44,872 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:10:45,049 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:10:54,873 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:10:55,169 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:12:01,129 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 15:12:01,174 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 15:12:11,451 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 15:12:11,451 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 15:12:11,566 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 15:12:11,590 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 15:12:15,848 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:42 +03 二月 2026 | 15:12:15,925 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:40 +03 二月 2026 | 15:12:16,049 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 15:12:16,149 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 15:12:18,960 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 15:12:18,989 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 15:12:19,826 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:12:19,827 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:12:19,827 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:251366 +03 二月 2026 | 15:12:19,865 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:12:19,865 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:12:19,866 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:350745 +03 二月 2026 | 15:12:20,167 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:12:20,220 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:12:21,846 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:251366 +03 二月 2026 | 15:12:21,863 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:350745 +03 二月 2026 | 15:12:21,885 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:12:21,901 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:12:22,062 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:12:22,094 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:12:22,180 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:12:22,180 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:12:22,180 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:12:22,215 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:12:22,215 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:12:22,215 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:12:22,538 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:12:22,540 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:12:22,661 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:12:22,664 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:12:22,702 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:12:22,702 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2013000 +03 二月 2026 | 15:12:22,702 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:12:22,702 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:12:22,702 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:12:22,702 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:12:22,702 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:12:22,702 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:12:22,838 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:12:22,868 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:12:23,072 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@519a6ec0 +03 二月 2026 | 15:12:23,115 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e3c1cbe +03 二月 2026 | 15:12:23,804 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:12:23,805 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:12:23,805 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:12:23,829 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:12:23,830 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:12:23,830 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:12:23,844 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:12:23,869 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:12:23,884 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:12:23,912 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:12:24,034 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:12:24,076 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:12:27,399 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 15:12:27,511 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:12:27,706 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:12:32,782 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.247, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=621977300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 15:12:35,650 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1---------com.robotcm.taurus.client.MessageResponse@d48ab18 +03 二月 2026 | 15:12:35,650 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1getKey---------{robortInfo}:168417 +03 二月 2026 | 15:12:35,650 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1key---------g{0}:play:0 +03 二月 2026 | 15:12:35,650 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 退出状态1aid---------168417 +03 二月 2026 | 15:12:36,207 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 15:12:36,308 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 15:12:39,625 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.247, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=621977300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 15:12:47,497 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:12:47,546 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:12:47,772 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:12:47,772 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:12:47,772 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:251366 +03 二月 2026 | 15:12:47,817 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:12:47,817 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:12:47,817 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:251366 +03 二月 2026 | 15:12:48,301 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:12:48,336 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:12:50,161 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:251366 +03 二月 2026 | 15:12:50,202 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:12:50,257 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:251366 +03 二月 2026 | 15:12:50,299 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:12:50,406 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:12:50,449 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:12:50,536 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:12:50,536 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:12:50,536 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:12:50,568 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 15:12:50,611 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:12:50,911 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:12:50,940 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=251366, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:12:51,030 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:12:51,073 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:12:51,073 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2013000 +03 二月 2026 | 15:12:51,073 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:12:51,073 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:12:51,214 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:12:51,454 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e3c1cbe +03 二月 2026 | 15:12:52,175 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:12:52,175 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:12:52,176 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:12:52,215 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:12:52,253 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:12:52,414 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:12:52,734 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=251366, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:12:53,545 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.246, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=621977300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 15:12:53,545 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.246, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=621977300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 15:12:53,545 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{sex=1, ip=103.43.132.246, entrust_time=0, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, entrust=false, nick=小猫, seat=2, ready=0, hp_info={cur_hp=621977300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, aid=112233} +03 二月 2026 | 15:12:56,210 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 15:12:56,251 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 15:13:14,238 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 15:13:26,027 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:13:26,277 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:13:26,278 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:13:26,278 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:251366 +03 二月 2026 | 15:13:26,652 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:13:28,533 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:251366 +03 二月 2026 | 15:13:28,574 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 15:13:28,760 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 15:13:28,878 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 15:13:28,919 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:13:29,242 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=251366, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:13:34,359 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:13:34,755 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:13:34,755 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:13:34,755 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:251366 +03 二月 2026 | 15:13:35,142 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:13:36,226 | ERROR | Thread-41 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 15:13:36,259 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 15:13:36,754 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:251366 +03 二月 2026 | 15:13:36,798 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 15:13:36,990 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 15:13:37,107 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:13:37,107 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:13:37,107 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:13:37,458 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:13:37,575 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:13:37,614 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:13:37,614 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:13:37,614 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:13:37,614 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:13:37,757 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:13:37,995 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@519a6ec0 +03 二月 2026 | 15:13:38,720 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:13:38,720 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:13:38,720 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:13:38,759 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:13:38,799 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:13:38,964 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:13:39,285 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=251366, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:13:44,861 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:251366 +03 二月 2026 | 15:13:44,905 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 15:13:45,103 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 15:13:45,225 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:13:45,226 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:13:45,226 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:13:45,584 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:13:45,706 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:13:45,745 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:13:45,745 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:13:45,745 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:13:45,745 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:13:45,890 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:13:46,130 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@519a6ec0 +03 二月 2026 | 15:13:46,849 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:13:46,849 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:13:46,849 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:13:46,888 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:13:46,927 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:13:47,092 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:13:47,782 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 15:13:48,653 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:13:48,655 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:13:48,655 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:484838 +03 二月 2026 | 15:13:49,039 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:13:50,693 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:484838 +03 二月 2026 | 15:13:50,737 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:13:50,924 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:13:51,047 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:13:51,047 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:13:51,047 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:13:51,407 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:13:51,532 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:13:51,572 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:13:51,572 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:13:51,572 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:13:51,572 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:13:51,717 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:13:51,962 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@519a6ec0 +03 二月 2026 | 15:13:52,536 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 15:13:52,686 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:13:52,686 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:13:52,686 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:13:52,726 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:13:52,764 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:13:52,929 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:13:56,352 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:13:56,471 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:132788 +03 二月 2026 | 15:13:56,659 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:15:22,426 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 15:15:22,469 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 15:15:32,744 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 15:15:32,744 | INFO | 132788 | client.business.AccountBusiness | | id:132788 login +03 二月 2026 | 15:15:32,873 | INFO | 132788 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 15:15:32,881 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 15:15:37,353 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:41 +03 二月 2026 | 15:15:37,546 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 15:15:37,801 | WARN | 132788 | client.business.AccountBusiness | | id:132788 repeat login, token count:43 +03 二月 2026 | 15:15:40,798 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 15:15:40,973 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 15:15:41,767 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:15:41,768 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:15:41,768 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:889913 +03 二月 2026 | 15:15:41,826 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:15:41,827 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:15:41,827 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:800989 +03 二月 2026 | 15:15:42,137 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:15:42,235 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:15:43,884 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:889913 +03 二月 2026 | 15:15:43,934 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:15:43,957 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:800989 +03 二月 2026 | 15:15:43,996 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:15:44,140 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:15:44,163 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 15:15:44,262 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:15:44,262 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:15:44,262 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:15:44,273 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:15:44,273 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:15:44,273 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:15:44,615 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:15:44,635 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:15:44,737 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:15:44,745 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:15:44,779 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:15:44,779 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2013000 +03 二月 2026 | 15:15:44,779 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:15:44,779 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:15:44,788 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:15:44,789 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:15:44,789 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:15:44,789 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:15:44,942 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:15:44,950 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:15:45,166 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2ad554bf +03 二月 2026 | 15:15:45,212 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51d0bd89 +03 二月 2026 | 15:15:45,912 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:15:45,912 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:15:45,912 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:15:45,922 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:15:45,922 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:15:45,922 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:15:45,956 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:15:45,961 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:15:46,002 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:15:46,002 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:15:46,162 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:15:46,189 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:15:49,605 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:15:49,742 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:15:49,994 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:15:59,534 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:16:09,656 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:16:09,729 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:16:09,989 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:16:09,989 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:16:09,989 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:889913 +03 二月 2026 | 15:16:10,027 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:16:10,028 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:16:10,028 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:889913 +03 二月 2026 | 15:16:10,610 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:16:10,619 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:16:12,360 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:889913 +03 二月 2026 | 15:16:12,399 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:16:12,476 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:889913 +03 二月 2026 | 15:16:12,511 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:16:12,579 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:16:12,651 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:16:12,705 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:16:12,706 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:16:12,706 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:16:12,779 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 15:16:12,814 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:16:13,082 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:16:13,138 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=889913, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:16:13,210 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:16:13,255 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:16:13,255 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:16:13,255 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:16:13,255 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:16:13,395 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:16:13,644 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2ad554bf +03 二月 2026 | 15:16:14,386 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:16:14,386 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:16:14,386 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:16:14,430 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:16:14,474 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:16:14,637 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:16:14,972 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=889913, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:16:16,205 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 15:16:16,435 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:16,626 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:16,774 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 15:16:16,888 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:17,076 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:17,220 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 15:16:17,330 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:17,514 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:17,667 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=132788} +03 二月 2026 | 15:16:17,777 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:17,963 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:18,110 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:18,221 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:18,409 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:18,557 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:18,667 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:18,855 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:19,002 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:19,113 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:19,299 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:19,446 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:19,558 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:19,744 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:26,180 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:16:28,010 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:16:36,295 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:16:36,567 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:16:36,567 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:16:36,567 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:889913 +03 二月 2026 | 15:16:36,902 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:16:38,124 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:16:38,517 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:16:38,517 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:16:38,517 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:889913 +03 二月 2026 | 15:16:38,532 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:889913 +03 二月 2026 | 15:16:38,567 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:16:38,741 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:16:38,869 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 15:16:38,890 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:16:38,904 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:16:39,233 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=889913, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:16:40,493 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:889913 +03 二月 2026 | 15:16:40,529 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:16:40,704 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:16:40,827 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:16:40,827 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:16:40,828 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:16:41,212 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:16:41,339 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:16:41,381 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:16:41,382 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:16:41,382 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:16:41,382 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:16:41,521 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 15:16:41,765 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@2ad554bf +03 二月 2026 | 15:16:42,499 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 15:16:42,500 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 15:16:42,500 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 15:16:42,543 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 15:16:42,589 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 15:16:42,752 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:16:43,079 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=889913, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:16:46,219 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:46,482 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:46,676 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:46,855 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:46,970 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:47,159 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:47,313 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:47,429 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:47,616 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:47,765 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:47,879 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:48,069 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:48,230 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:48,346 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:48,536 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:48,688 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:48,803 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:48,993 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:49,300 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:49,412 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:49,603 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:49,751 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 15:16:49,867 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 15:16:50,057 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 15:16:52,271 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:16:56,121 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:17:02,377 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:17:02,639 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:17:02,639 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:17:02,639 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:889913 +03 二月 2026 | 15:17:03,012 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 15:17:04,846 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:889913 +03 二月 2026 | 15:17:04,887 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:17:05,073 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:17:05,200 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 15:17:05,243 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 15:17:05,580 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=889913, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 15:17:06,228 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 15:17:06,615 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 15:17:06,615 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 15:17:06,615 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:889913 +03 二月 2026 | 15:17:06,988 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 15:17:08,674 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:889913 +03 二月 2026 | 15:17:08,716 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:17:08,906 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 15:17:09,027 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 15:17:09,027 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 15:17:09,027 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 15:17:09,400 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 15:17:09,522 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 15:17:09,565 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 15:17:09,565 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 15:17:09,565 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 15:17:09,565 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 15:17:09,712 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 16:12:28,993 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:12:29,055 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:12:40,247 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:12:40,299 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:13:16,615 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:13:16,659 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:13:27,123 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:13:27,317 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:13:32,230 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:42 +03 二月 2026 | 16:13:32,405 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:13:35,798 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 16:13:36,710 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:13:36,712 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:13:36,712 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:702043 +03 二月 2026 | 16:13:37,212 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:13:39,187 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:702043 +03 二月 2026 | 16:13:39,260 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:13:39,459 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:13:39,582 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 16:13:39,582 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 16:13:39,582 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 16:13:39,926 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 16:13:40,093 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 16:13:40,141 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 16:13:40,142 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 16:13:40,142 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 16:13:40,142 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 16:13:40,302 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 16:13:40,542 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@c443362 +03 二月 2026 | 16:13:41,206 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 16:13:41,206 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 16:13:41,206 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 16:13:41,243 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 16:13:41,281 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 16:13:41,449 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:13:44,977 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 16:13:45,107 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 16:13:45,410 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 16:14:05,001 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:14:05,260 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:14:05,260 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:14:05,260 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:702043 +03 二月 2026 | 16:14:05,904 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:14:07,799 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:702043 +03 二月 2026 | 16:14:07,853 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 16:14:08,090 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 16:14:08,223 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 16:14:08,223 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 16:14:08,223 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 16:14:08,594 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 16:14:08,709 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 16:14:08,743 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 16:14:08,743 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2896000 +03 二月 2026 | 16:14:08,743 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 16:14:08,743 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 16:14:08,917 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 16:14:09,220 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@c443362 +03 二月 2026 | 16:14:10,079 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 16:14:10,079 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 16:14:10,079 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 16:14:10,120 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 16:14:10,156 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 16:14:10,348 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:14:10,668 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=702043, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 16:14:15,267 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 16:14:15,302 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 16:14:16,984 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:702043 +03 二月 2026 | 16:14:17,031 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 16:14:17,273 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 16:14:17,414 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 16:14:17,452 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:14:18,428 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 16:14:19,364 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:14:19,364 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:14:19,364 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:741793 +03 二月 2026 | 16:14:19,813 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:14:21,740 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:741793 +03 二月 2026 | 16:14:21,809 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:14:22,085 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:14:22,229 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 16:14:22,323 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:14:36,210 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:14:36,210 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:14:36,210 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:702043 +03 二月 2026 | 16:14:36,799 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:14:39,173 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:702043 +03 二月 2026 | 16:14:39,279 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:14:39,537 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:14:39,689 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 16:14:39,730 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:14:40,073 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=702043, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 16:14:46,192 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:702043 +03 二月 2026 | 16:14:46,234 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:14:46,540 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:14:46,677 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 16:14:46,746 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:14:47,643 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 16:14:48,508 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:14:48,508 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:14:48,508 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:839947 +03 二月 2026 | 16:14:49,033 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:14:52,163 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:14:52,214 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:15:02,459 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:15:02,608 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:15:07,616 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:43 +03 二月 2026 | 16:15:07,799 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:15:08,166 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:15:08,166 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:15:08,166 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:702043 +03 二月 2026 | 16:15:08,653 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:15:11,602 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:702043 +03 二月 2026 | 16:15:11,642 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:15:11,855 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:15:11,971 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 16:15:12,020 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:15:12,301 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=702043, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 16:15:15,438 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 16:15:15,692 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 16:15:15,903 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 16:15:15,903 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 16:15:15,988 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 16:15:16,210 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 16:15:16,372 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 16:15:16,452 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 16:15:16,500 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@59c6a49d +03 二月 2026 | 16:15:16,501 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 105, 203, 208, 106, 207, 208, 104, 105, 204, 105, 202, 205, 205] +03 二月 2026 | 16:15:16,501 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 16:15:16,501 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 16:15:16,501 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 16:15:16,501 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 16:15:35,343 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:15:36,529 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 105, 203, 208, 106, 207, 208, 104, 105, 204, 105, 205, 205, 207, 207] +03 二月 2026 | 16:15:36,530 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 16:15:36,530 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 16:15:36,530 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 16:15:36,530 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203, 201] +03 二月 2026 | 16:15:36,535 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 105, 203, 208, 106, 207, 208, 104, 105, 204, 105, 205, 207, 207] +03 二月 2026 | 16:15:36,535 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 16:15:36,535 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 16:15:36,535 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 16:15:36,535 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 203, 201] +03 二月 2026 | 16:15:48,355 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:15:48,414 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:15:58,973 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:15:59,204 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:16:04,465 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:44 +03 二月 2026 | 16:16:04,798 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:20:26,003 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:20:26,055 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:20:36,405 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:20:36,552 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:20:41,860 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:45 +03 二月 2026 | 16:20:50,354 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:20:50,407 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:21:00,706 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:21:00,895 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:21:05,975 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:46 +03 二月 2026 | 16:21:25,990 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:21:26,033 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:21:36,462 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:21:36,605 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:21:41,730 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:47 +03 二月 2026 | 16:21:51,799 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:21:51,837 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:21:54,762 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:48 +03 二月 2026 | 16:22:04,868 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:22:04,916 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:22:08,383 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:49 +03 二月 2026 | 16:22:18,507 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:22:18,541 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:22:21,763 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:50 +03 二月 2026 | 16:22:31,849 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:22:31,884 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:22:38,977 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:22:39,029 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:22:49,346 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:22:49,701 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:22:55,993 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:52 +03 二月 2026 | 16:22:56,217 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:23:00,482 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:839947 +03 二月 2026 | 16:23:00,528 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:23:00,835 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:23:01,060 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 16:23:01,060 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 16:23:01,060 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 16:23:01,608 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 16:23:01,735 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 16:23:01,770 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 16:23:01,770 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2895000 +03 二月 2026 | 16:23:01,771 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 16:23:01,771 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 16:23:01,994 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 16:23:02,337 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5e9dc837 +03 二月 2026 | 16:23:03,243 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 16:23:03,244 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 16:23:03,244 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 16:23:03,284 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 16:23:03,328 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 16:23:03,600 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:23:04,682 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 16:23:05,921 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:23:05,921 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:23:05,921 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:478616 +03 二月 2026 | 16:23:06,315 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:23:08,548 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:478616 +03 二月 2026 | 16:23:08,589 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:23:08,814 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:23:08,926 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 16:23:08,926 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 16:23:08,926 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 16:23:09,290 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 16:23:09,564 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 16:23:09,618 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 16:23:09,618 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2895000 +03 二月 2026 | 16:23:09,618 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 16:23:09,630 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 16:23:09,799 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 16:23:10,081 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5e9dc837 +03 二月 2026 | 16:23:11,600 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 16:23:11,600 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 16:23:11,600 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 16:23:11,635 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 16:23:11,725 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 16:23:11,963 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:23:15,133 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 16:23:15,209 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 16:23:25,568 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:23:25,696 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:23:25,696 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:23:25,696 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:839947 +03 二月 2026 | 16:23:26,133 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:23:28,377 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:839947 +03 二月 2026 | 16:23:28,415 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:23:28,639 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:23:28,742 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 16:23:28,742 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 16:23:28,743 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 16:23:29,236 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 16:23:29,467 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 16:23:29,509 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 16:23:29,509 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2895000 +03 二月 2026 | 16:23:29,509 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 16:23:29,509 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 16:23:29,734 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 16:23:30,011 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5e9dc837 +03 二月 2026 | 16:23:31,026 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 16:23:31,026 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 16:23:31,027 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 16:23:31,077 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 16:23:31,122 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 16:23:31,363 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:23:31,679 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=839947, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 16:23:34,818 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 16:23:35,126 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 16:23:35,446 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 16:23:35,447 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 16:23:35,598 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 16:23:35,807 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 16:23:35,956 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 16:23:36,004 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 16:23:36,065 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@77e34ef5 +03 二月 2026 | 16:23:38,144 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 204, 104, 207, 202, 105, 109, 206, 203, 209, 203, 101, 103, 108] +03 二月 2026 | 16:23:38,144 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 16:23:38,144 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 16:23:38,144 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 16:23:38,145 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101] +03 二月 2026 | 16:24:08,118 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:24:08,169 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:24:18,520 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:24:18,781 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:24:24,455 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:53 +03 二月 2026 | 16:24:34,530 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:24:34,633 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:24:38,035 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:54 +03 二月 2026 | 16:24:46,058 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:24:46,100 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:24:56,360 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:24:56,498 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:25:02,855 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:55 +03 二月 2026 | 16:25:03,089 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:26:48,528 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:26:48,570 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:26:59,022 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:26:59,176 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:27:04,674 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:56 +03 二月 2026 | 16:27:05,811 | ERROR | 168417 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 16:27:15,856 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:27:15,914 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:27:19,212 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:57 +03 二月 2026 | 16:27:20,117 | ERROR | 168417 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 16:27:30,151 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:27:30,186 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:27:34,128 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:58 +03 二月 2026 | 16:27:34,886 | ERROR | 168417 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 16:27:44,925 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:27:44,979 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:27:48,676 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:59 +03 二月 2026 | 16:27:49,822 | ERROR | 168417 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 16:27:59,919 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:28:00,001 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:28:03,510 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:60 +03 二月 2026 | 16:28:04,763 | ERROR | 168417 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 16:28:14,798 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:28:14,833 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:28:18,578 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:61 +03 二月 2026 | 16:28:24,063 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:28:24,104 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:28:34,428 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:28:34,544 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:28:40,499 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:62 +03 二月 2026 | 16:28:52,365 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:28:52,425 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:29:35,761 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:29:35,805 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:29:46,420 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:29:46,565 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:30:06,092 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:63 +03 二月 2026 | 16:30:06,253 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:30:17,795 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:30:25,261 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 16:30:25,338 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 16:32:41,456 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:32:41,503 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:32:51,948 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:32:52,218 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:32:58,940 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:64 +03 二月 2026 | 16:32:59,092 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:32:59,491 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:32:59,491 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:32:59,491 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:478616 +03 二月 2026 | 16:33:00,072 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:33:03,078 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:478616 +03 二月 2026 | 16:33:03,124 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:33:03,686 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:33:03,819 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 16:33:03,819 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 16:33:03,820 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 16:33:05,097 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 16:33:05,226 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 16:33:05,311 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 16:33:05,312 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2894000 +03 二月 2026 | 16:33:05,312 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 16:33:05,312 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 16:33:05,493 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 16:33:05,802 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@3d621cd7 +03 二月 2026 | 16:33:07,042 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 16:33:07,054 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 16:33:07,054 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 16:33:07,099 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 16:33:07,141 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 16:33:07,388 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:33:07,715 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=478616, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 16:33:10,848 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 16:33:11,117 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 16:33:11,333 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 16:33:11,333 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 16:33:11,425 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 16:33:11,613 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 16:33:11,753 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 16:33:11,790 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 16:33:11,824 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@10d2d949 +03 二月 2026 | 16:33:11,825 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 104, 208, 101, 204, 106, 108, 107, 104, 204, 201, 105, 205, 209] +03 二月 2026 | 16:33:11,825 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 16:33:11,825 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 16:33:11,825 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 16:33:11,825 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 16:33:13,650 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 104, 208, 204, 106, 108, 107, 104, 204, 201, 105, 205, 209, 207] +03 二月 2026 | 16:33:13,650 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 16:33:13,650 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 16:33:13,650 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 16:33:13,651 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 101] +03 二月 2026 | 16:33:23,765 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:33:23,817 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:33:34,185 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:33:34,339 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:33:42,437 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:65 +03 二月 2026 | 16:33:42,550 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:33:42,550 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:33:42,550 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:478616 +03 二月 2026 | 16:33:42,616 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:33:43,081 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:33:45,414 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:478616 +03 二月 2026 | 16:33:45,457 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 16:33:45,803 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 16:33:45,955 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 16:33:45,991 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:33:46,570 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=478616, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 16:33:49,244 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205] +03 二月 2026 | 16:33:49,244 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 16:33:49,245 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 16:33:49,245 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 16:33:49,245 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 16:33:59,573 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:34:09,693 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:34:19,878 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:34:30,047 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:34:40,155 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:34:50,396 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:35:01,916 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:35:12,028 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:35:22,135 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:35:32,266 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:35:42,380 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:35:52,719 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:36:02,861 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:36:13,001 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:36:23,173 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:36:33,298 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:36:43,438 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:36:53,609 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:37:03,729 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:37:13,971 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:37:24,174 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:37:34,392 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:37:44,584 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:37:54,762 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:38:04,995 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:38:15,230 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:38:25,412 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:38:35,513 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:38:45,624 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:38:55,751 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:39:05,904 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:39:16,061 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:39:26,170 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:39:36,289 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:39:46,401 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:39:56,529 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:40:06,649 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:40:16,759 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:40:26,984 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:40:37,092 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:40:47,214 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:40:57,430 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:41:07,570 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:41:17,674 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:41:27,790 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:41:37,912 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:41:48,040 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:41:58,167 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:42:08,342 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:42:18,473 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:42:28,616 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:42:38,844 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:42:48,980 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:42:59,114 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:43:09,239 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:43:19,355 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:43:29,463 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:43:39,965 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:43:50,075 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:44:00,194 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:44:10,330 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:44:20,492 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:44:30,608 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:44:40,810 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:44:50,915 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:45:01,097 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:45:11,203 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:45:21,574 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:45:31,700 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:45:41,934 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:45:52,108 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:46:02,227 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:46:12,360 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:46:22,570 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:46:32,717 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:46:42,828 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:46:52,966 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:47:04,619 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:47:14,742 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:47:24,855 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:47:35,030 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:47:45,131 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:47:55,275 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:48:05,409 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:48:15,558 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:48:25,769 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:48:35,904 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:48:46,008 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:48:56,118 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:49:02,366 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:49:02,429 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:49:12,694 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:49:12,876 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:49:17,814 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:66 +03 二月 2026 | 16:49:17,890 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:49:17,890 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:49:17,890 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:478616 +03 二月 2026 | 16:49:18,008 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:49:18,396 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:49:21,774 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:478616 +03 二月 2026 | 16:49:21,812 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 16:49:22,029 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 16:49:22,164 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 16:49:22,234 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:49:22,674 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=478616, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 16:49:35,675 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:51:02,115 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:51:02,164 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:51:12,418 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:51:12,532 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:51:17,406 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:67 +03 二月 2026 | 16:51:17,506 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:51:17,506 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:51:17,506 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:478616 +03 二月 2026 | 16:51:17,543 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:51:17,970 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:51:20,571 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:478616 +03 二月 2026 | 16:51:20,608 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 16:51:20,804 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 16:51:20,929 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 16:51:20,964 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:51:21,252 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=478616, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 16:51:34,259 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:51:44,386 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:51:54,525 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:52:04,696 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:52:14,804 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 16:52:17,921 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 16:52:18,776 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:52:18,776 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:52:18,776 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:939021 +03 二月 2026 | 16:52:19,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:52:21,023 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:939021 +03 二月 2026 | 16:52:21,063 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:52:21,265 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 16:52:21,379 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 16:52:21,379 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 16:52:21,379 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 16:52:21,733 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 16:52:22,008 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 16:52:22,047 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 16:52:22,047 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2893000 +03 二月 2026 | 16:52:22,047 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 16:52:22,047 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 16:52:22,226 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 16:52:22,455 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4c79dd64 +03 二月 2026 | 16:52:23,392 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 16:52:23,392 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 16:52:23,392 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 16:52:23,426 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 16:52:23,464 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 16:52:23,674 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:52:25,143 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 16:52:25,173 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 16:52:34,339 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 16:52:34,387 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 16:52:44,684 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 16:52:44,860 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 16:52:50,026 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:68 +03 二月 2026 | 16:52:50,270 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 16:52:50,557 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 16:52:50,557 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 16:52:50,557 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:939021 +03 二月 2026 | 16:52:51,112 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 16:52:53,773 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:939021 +03 二月 2026 | 16:52:53,961 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:52:54,159 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 16:52:54,287 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 16:52:54,287 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 16:52:54,287 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 16:52:55,000 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 16:52:55,321 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 16:52:55,379 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 16:52:55,379 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2893000 +03 二月 2026 | 16:52:55,379 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 16:52:55,379 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 16:52:55,531 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 16:52:55,767 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6abd782f +03 二月 2026 | 16:52:56,699 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 16:52:56,699 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 16:52:56,699 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 16:52:56,737 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 16:52:56,774 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 16:52:56,952 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 16:52:57,445 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=939021, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 16:53:00,619 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 16:53:00,959 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 16:53:01,130 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 16:53:01,130 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 16:53:01,198 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 16:53:01,408 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 16:53:01,512 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 16:53:01,556 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 16:53:01,784 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@10d2d949 +03 二月 2026 | 17:05:31,965 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 17:05:32,016 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 17:05:42,307 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 17:05:42,458 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 17:05:48,640 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:69 +03 二月 2026 | 17:05:48,777 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 17:05:48,778 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 17:05:48,778 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:939021 +03 二月 2026 | 17:05:49,000 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 17:05:49,836 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 17:05:53,047 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:939021 +03 二月 2026 | 17:05:53,107 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:05:53,430 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:05:53,595 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 17:05:53,657 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 17:05:54,197 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=939021, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 17:06:00,723 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 202, 204, 103, 109, 101, 108, 201, 109, 105, 202] +03 二月 2026 | 17:06:00,723 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 17:06:00,723 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 17:06:00,723 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 17:06:00,723 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[208] +03 二月 2026 | 17:06:04,025 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 202, 204, 103, 109, 101, 108, 109, 105, 202, 107] +03 二月 2026 | 17:06:04,025 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 17:06:04,025 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 17:06:04,025 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 17:06:04,025 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 209, 207, 202, 203] +03 二月 2026 | 17:06:07,201 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:06:10,487 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 204, 103, 109, 101, 108, 109, 105, 202, 107, 207, 207] +03 二月 2026 | 17:06:10,487 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 17:06:10,487 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 17:06:10,487 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 17:06:10,487 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 101, 103, 209, 207, 202, 203] +03 二月 2026 | 17:06:10,488 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[202, 204, 103, 109, 101, 108, 109, 105, 202, 107, 207] +03 二月 2026 | 17:06:10,488 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 17:06:10,488 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 17:06:10,488 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 17:06:10,488 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[107, 101, 103, 209, 207, 202, 203] +03 二月 2026 | 17:06:17,390 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:06:27,559 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:06:37,689 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:06:49,234 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 17:06:49,290 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 17:06:59,611 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 17:06:59,809 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 17:07:05,508 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:70 +03 二月 2026 | 17:07:05,629 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 17:07:05,629 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 17:07:05,629 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:939021 +03 二月 2026 | 17:07:05,779 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 17:07:06,219 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 17:07:12,349 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:939021 +03 二月 2026 | 17:07:12,385 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:07:12,575 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:07:12,697 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 17:07:12,735 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 17:07:13,042 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=939021, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 17:07:26,046 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:07:36,183 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:07:46,301 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:27:59,452 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 17:27:59,507 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 17:28:09,771 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 17:28:10,153 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 17:28:16,020 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:71 +03 二月 2026 | 17:28:16,127 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 17:28:16,127 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 17:28:16,127 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:939021 +03 二月 2026 | 17:28:16,281 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 17:28:16,745 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 17:28:19,014 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:939021 +03 二月 2026 | 17:28:19,054 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:28:19,263 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:28:19,390 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 17:28:19,436 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 17:28:19,949 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=939021, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 17:28:32,954 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:28:43,186 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:28:53,386 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:29:03,500 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:29:13,689 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:29:23,849 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:29:33,997 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:29:44,125 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:29:54,340 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:30:04,494 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:30:14,616 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:30:24,773 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:30:34,908 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:30:45,090 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:30:55,234 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:31:05,489 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:31:15,721 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:31:25,888 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:31:36,009 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:31:46,291 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:31:56,426 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:32:06,558 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:32:16,751 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:32:26,877 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:32:37,116 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:32:47,327 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:32:57,453 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:33:07,600 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:33:17,728 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:33:27,892 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:33:38,069 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:34:03,465 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 17:34:23,647 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:34:25,334 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 17:34:25,365 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 17:34:44,065 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 17:35:18,539 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 17:35:18,591 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 17:35:29,117 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 17:35:29,252 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 17:35:33,962 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:72 +03 二月 2026 | 17:35:34,055 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 17:35:34,055 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 17:35:34,055 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:939021 +03 二月 2026 | 17:35:34,176 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 17:35:34,562 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 17:35:37,105 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:939021 +03 二月 2026 | 17:35:37,255 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:35:37,605 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:35:38,003 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 17:35:38,101 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 17:35:38,569 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=939021, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 17:35:51,571 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:36:01,886 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:36:14,317 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:36:24,540 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 17:36:38,868 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 17:36:38,919 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 17:36:49,195 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 17:36:49,316 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 17:36:55,299 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:73 +03 二月 2026 | 17:36:55,414 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 17:36:55,414 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 17:36:55,414 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:939021 +03 二月 2026 | 17:36:55,504 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 17:36:55,943 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 17:36:58,617 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:939021 +03 二月 2026 | 17:36:58,649 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:36:58,821 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:36:58,936 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 17:36:58,989 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 17:36:59,280 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=939021, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 17:41:10,958 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 17:41:11,013 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 17:41:21,409 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 17:41:21,549 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 17:41:28,309 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:74 +03 二月 2026 | 17:41:28,454 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 17:41:28,455 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 17:41:28,455 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:939021 +03 二月 2026 | 17:41:28,598 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 17:41:29,142 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 17:41:31,754 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:939021 +03 二月 2026 | 17:41:31,792 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:41:31,994 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:41:32,102 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 17:41:32,162 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 17:41:32,538 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=939021, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 17:41:45,985 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 17:41:46,034 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 17:41:56,337 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 17:41:56,471 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 17:42:00,922 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:75 +03 二月 2026 | 17:42:01,032 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 17:42:01,032 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 17:42:01,032 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:939021 +03 二月 2026 | 17:42:01,106 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 17:42:01,724 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 17:42:03,969 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:939021 +03 二月 2026 | 17:42:04,009 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:42:04,279 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 17:42:04,409 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 17:42:04,444 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 17:42:04,861 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=939021, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 18:30:00,997 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 18:30:01,038 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 18:30:11,556 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 18:30:11,679 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 18:30:16,312 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:76 +03 二月 2026 | 18:30:16,520 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:30:17,042 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 18:30:17,043 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 18:30:17,043 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 18:30:17,576 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 18:30:20,126 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 18:30:20,166 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 18:30:20,380 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 18:30:20,481 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 18:30:20,482 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 18:30:20,482 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 18:30:21,157 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 18:30:21,279 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 18:30:21,357 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 18:30:21,357 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:2892000 +03 二月 2026 | 18:30:21,357 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 18:30:21,358 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 18:30:21,542 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 18:30:21,781 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6abd782f +03 二月 2026 | 18:30:22,695 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 18:30:22,696 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 18:30:22,696 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 18:30:22,730 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 18:30:22,773 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 18:30:22,970 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 18:30:23,380 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 18:30:26,467 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 18:30:26,733 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 18:30:27,008 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 18:30:27,008 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 18:30:27,228 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 18:30:27,483 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 18:30:27,678 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 18:30:27,723 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 18:30:27,953 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@7960b46 +03 二月 2026 | 18:41:36,564 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 18:41:36,607 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 18:41:46,997 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 18:41:47,107 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 18:41:57,027 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:77 +03 二月 2026 | 18:41:57,109 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 18:41:57,109 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 18:41:57,109 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 18:41:57,218 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:41:57,573 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 18:41:59,692 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 18:41:59,726 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 18:41:59,987 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 18:42:00,098 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 18:42:00,132 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 18:42:00,445 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 18:42:11,008 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 103, 108, 206, 207, 104, 204, 205, 202, 201, 209, 101, 105] +03 二月 2026 | 18:42:11,008 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 18:42:11,008 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 18:42:11,008 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 18:42:11,008 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209] +03 二月 2026 | 18:42:13,449 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:42:23,558 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:42:43,993 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:43:04,222 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:43:05,205 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:43:05,288 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:43:24,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:43:44,748 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:43:45,220 | ERROR | Thread-41 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:43:45,296 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:44:05,089 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:44:25,233 | ERROR | Thread-46 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:44:25,285 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:44:35,532 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:44:55,262 | ERROR | Thread-50 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:44:55,327 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:45:05,977 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:45:25,257 | ERROR | Thread-55 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:45:25,277 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:45:36,436 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:45:55,256 | ERROR | Thread-59 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:45:55,325 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:46:06,788 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:46:25,266 | ERROR | Thread-64 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:46:25,275 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:46:37,333 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:46:55,269 | ERROR | Thread-68 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:46:55,322 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:47:07,779 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:47:25,286 | ERROR | Thread-73 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:47:25,368 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:47:38,228 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:47:55,288 | ERROR | Thread-77 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:47:55,311 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:48:08,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:48:25,299 | ERROR | Thread-82 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:48:25,356 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:48:39,123 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:48:55,311 | ERROR | Thread-86 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:48:55,404 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:49:10,577 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:49:30,738 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:49:35,338 | ERROR | Thread-91 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:49:35,388 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:49:51,076 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:50:11,317 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:50:15,365 | ERROR | Thread-96 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:50:15,393 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:50:33,287 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:50:53,496 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:50:55,343 | ERROR | Thread-100 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:50:55,389 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:51:13,879 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:51:34,262 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:51:35,368 | ERROR | Thread-105 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:51:35,373 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:51:54,773 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:52:14,925 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:52:15,413 | ERROR | Thread-110 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:52:15,482 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:52:35,378 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:52:55,432 | ERROR | Thread-114 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:52:55,476 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:53:05,927 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:53:25,383 | ERROR | Thread-118 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:53:25,424 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:53:36,481 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:53:55,406 | ERROR | Thread-122 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:53:55,469 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:54:06,924 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:54:25,400 | ERROR | Thread-127 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:54:25,417 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:54:37,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:54:55,406 | ERROR | Thread-131 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:54:55,456 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:55:08,025 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:55:25,418 | ERROR | Thread-136 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:55:25,514 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:55:38,379 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:55:55,438 | ERROR | Thread-140 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:55:55,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:56:08,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:56:25,187 | ERROR | Thread-145 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:56:25,202 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:56:39,269 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:56:59,418 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:57:05,192 | ERROR | Thread-149 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:57:05,291 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:57:19,765 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:57:39,980 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:57:45,215 | ERROR | Thread-153 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:57:45,289 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:58:00,461 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:58:20,662 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:58:25,218 | ERROR | Thread-158 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:58:25,270 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:58:41,041 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:59:01,234 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:59:05,229 | ERROR | Thread-163 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:59:05,250 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 18:59:21,618 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 18:59:41,818 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 18:59:45,240 | ERROR | Thread-169 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 18:59:45,328 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:00:02,214 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:00:22,392 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:00:25,249 | ERROR | Thread-174 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:00:25,326 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:00:42,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:01:02,948 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:01:05,263 | ERROR | Thread-178 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:01:05,318 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:01:23,900 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:01:44,144 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:01:45,301 | ERROR | Thread-183 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:01:45,399 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:02:04,688 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:02:24,885 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:02:25,287 | ERROR | Thread-188 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:02:25,295 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:02:45,287 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:03:05,295 | ERROR | Thread-193 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:03:05,390 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:03:15,641 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:03:35,301 | ERROR | Thread-197 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:03:35,336 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:03:46,090 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:04:05,311 | ERROR | Thread-202 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:04:05,391 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:04:16,447 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:04:35,322 | ERROR | Thread-206 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:04:35,341 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:04:46,791 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:05:05,326 | ERROR | Thread-210 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:05:05,384 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:05:17,342 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:05:35,335 | ERROR | Thread-215 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:05:35,429 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:05:47,796 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:06:05,346 | ERROR | Thread-220 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:06:05,384 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:06:18,152 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:06:35,352 | ERROR | Thread-224 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:06:35,436 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:06:48,499 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:07:05,361 | ERROR | Thread-228 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:07:05,383 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:07:19,055 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:07:35,370 | ERROR | Thread-232 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:07:35,440 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:07:49,709 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:08:09,910 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:08:15,380 | ERROR | Thread-237 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:08:15,433 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:08:30,207 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:08:50,454 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:08:55,396 | ERROR | Thread-241 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:08:55,430 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:09:10,804 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:09:30,955 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:09:35,408 | ERROR | Thread-246 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:09:35,424 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:09:51,302 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:10:11,423 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:10:15,413 | ERROR | Thread-251 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:10:15,424 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:10:32,011 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:10:52,111 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:10:55,427 | ERROR | Thread-255 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:10:55,433 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:11:12,521 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:11:32,755 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:11:35,437 | ERROR | Thread-260 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:11:35,438 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:11:53,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:12:13,293 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:12:15,199 | ERROR | Thread-265 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:12:15,229 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:12:33,628 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:12:54,038 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:12:55,446 | ERROR | Thread-269 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:12:55,523 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:13:15,428 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:13:35,246 | ERROR | Thread-274 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:13:35,320 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:13:45,873 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:14:05,232 | ERROR | Thread-278 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:14:05,274 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:14:16,834 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:14:35,254 | ERROR | Thread-283 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:14:35,331 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:14:47,789 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:15:05,584 | ERROR | Thread-288 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:15:05,671 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:15:18,638 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:15:35,256 | ERROR | Thread-293 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:15:35,321 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:15:49,287 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:16:05,280 | ERROR | Thread-297 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:16:05,368 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:16:19,839 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:16:39,949 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:16:45,273 | ERROR | Thread-301 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:16:45,350 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:17:00,424 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:17:20,592 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:17:25,287 | ERROR | Thread-306 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:17:25,354 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:17:40,934 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:18:01,151 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:18:05,304 | ERROR | Thread-310 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:18:05,349 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:18:21,526 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:18:41,956 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:18:45,318 | ERROR | Thread-315 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:18:45,343 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:19:02,322 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:19:22,573 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:19:25,319 | ERROR | Thread-320 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:19:25,340 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:19:42,924 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:20:03,106 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:20:05,333 | ERROR | Thread-324 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:20:05,337 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:20:23,530 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:20:43,741 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:20:45,341 | ERROR | Thread-329 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:20:45,344 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:21:04,138 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:21:24,245 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:21:25,354 | ERROR | Thread-334 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:21:25,448 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:21:44,544 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:22:04,693 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:22:05,393 | ERROR | Thread-338 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:22:05,454 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:22:25,053 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:22:45,166 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:22:45,377 | ERROR | Thread-343 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:22:45,455 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:23:05,558 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:23:25,387 | ERROR | Thread-348 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:23:25,457 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:23:35,906 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:23:55,394 | ERROR | Thread-352 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:23:55,404 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:24:06,263 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:24:25,404 | ERROR | Thread-357 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:24:25,459 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:24:36,922 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:24:55,411 | ERROR | Thread-361 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:24:55,418 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:25:07,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:25:25,422 | ERROR | Thread-365 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:25:25,459 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:25:38,026 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:25:55,435 | ERROR | Thread-370 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:25:55,516 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:26:08,478 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:26:25,442 | ERROR | Thread-375 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:26:25,464 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:26:38,826 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:26:55,445 | ERROR | Thread-379 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:26:55,510 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:27:09,272 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:27:29,806 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:27:35,206 | ERROR | Thread-384 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:27:35,209 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:27:50,284 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:28:10,467 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:28:15,215 | ERROR | Thread-389 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:28:15,306 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:28:30,783 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:28:50,992 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:28:55,236 | ERROR | Thread-393 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:28:55,307 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:29:11,380 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:29:31,454 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:29:35,242 | ERROR | Thread-398 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:29:35,301 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:29:51,978 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:30:12,123 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:30:15,258 | ERROR | Thread-403 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:30:15,294 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:30:32,576 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:30:52,707 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:30:55,267 | ERROR | Thread-407 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:30:55,299 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:31:12,979 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:31:33,337 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:31:35,284 | ERROR | Thread-412 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:31:35,299 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:31:53,793 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:32:13,917 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:32:15,292 | ERROR | Thread-417 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:32:15,304 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:32:34,506 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:32:54,751 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:32:55,298 | ERROR | Thread-421 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:32:55,311 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:33:15,112 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:33:35,283 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:33:35,313 | ERROR | Thread-425 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:33:35,321 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:33:56,033 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:34:15,324 | ERROR | Thread-429 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:34:15,331 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:34:26,688 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:34:45,328 | ERROR | Thread-433 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:34:45,385 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:34:57,344 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:35:15,344 | ERROR | Thread-437 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:35:15,442 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:35:27,707 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:35:45,348 | ERROR | Thread-441 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:35:45,396 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:35:58,164 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:36:15,355 | ERROR | Thread-445 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:36:15,449 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:36:28,719 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:36:45,364 | ERROR | Thread-452 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:36:45,403 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:36:59,275 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:37:15,381 | ERROR | Thread-457 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:37:15,455 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:37:29,626 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:37:49,800 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:37:55,527 | ERROR | Thread-461 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:37:55,559 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:38:10,130 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:38:30,449 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:38:35,399 | ERROR | Thread-466 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:38:35,465 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:38:50,743 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:39:10,968 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:39:15,402 | ERROR | Thread-471 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:39:15,461 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:39:31,239 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:39:51,461 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:39:55,417 | ERROR | Thread-475 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:39:55,458 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:40:12,047 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:40:32,218 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:40:35,427 | ERROR | Thread-480 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:40:35,471 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:40:52,658 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:41:12,869 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:41:15,444 | ERROR | Thread-485 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:41:15,473 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:41:33,264 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:41:53,411 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:41:55,452 | ERROR | Thread-489 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:41:55,481 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:42:13,871 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:42:34,015 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:42:35,458 | ERROR | Thread-494 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:42:35,481 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:42:54,277 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:43:14,480 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:43:15,227 | ERROR | Thread-498 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:43:15,279 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:43:34,774 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:43:54,938 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:43:55,233 | ERROR | Thread-503 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:43:55,279 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:44:15,278 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:44:35,245 | ERROR | Thread-508 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:44:35,276 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:44:45,732 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:45:05,263 | ERROR | Thread-512 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:45:05,332 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:45:16,091 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:45:35,268 | ERROR | Thread-517 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:45:35,289 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:45:46,344 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:46:05,269 | ERROR | Thread-521 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:46:05,341 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:46:16,901 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:46:35,276 | ERROR | Thread-526 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:46:35,287 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:46:47,244 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:47:05,298 | ERROR | Thread-530 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:47:05,339 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:47:17,895 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:47:35,296 | ERROR | Thread-535 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:47:35,384 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:47:48,457 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:48:05,307 | ERROR | Thread-539 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:48:05,339 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:48:18,813 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:48:35,311 | ERROR | Thread-544 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:48:35,403 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:48:49,180 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:49:05,321 | ERROR | Thread-548 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:49:05,354 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:49:19,533 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:49:39,722 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:49:45,334 | ERROR | Thread-553 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:49:45,368 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:50:00,036 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:50:20,167 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:50:25,360 | ERROR | Thread-557 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:50:25,367 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:50:40,543 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:51:00,912 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:51:05,358 | ERROR | Thread-561 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:51:05,363 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:51:21,346 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:51:41,602 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:51:45,367 | ERROR | Thread-566 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:51:45,374 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:52:01,965 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:52:22,097 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:52:25,378 | ERROR | Thread-571 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:52:25,382 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:52:42,770 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:53:02,992 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:53:05,391 | ERROR | Thread-575 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:53:05,481 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:53:23,369 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:53:43,504 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:53:45,421 | ERROR | Thread-580 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:53:45,483 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:54:04,076 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:54:24,219 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:54:25,431 | ERROR | Thread-584 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:54:25,482 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:54:44,582 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:55:04,713 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:55:05,426 | ERROR | Thread-589 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:55:05,483 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:55:24,982 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:55:45,161 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 19:55:45,436 | ERROR | Thread-594 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:55:45,488 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:56:05,790 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:56:25,454 | ERROR | Thread-601 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:56:25,492 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:56:36,354 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:56:55,458 | ERROR | Thread-605 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:56:55,552 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:57:06,614 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:57:25,477 | ERROR | Thread-610 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:57:25,502 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:57:36,960 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:57:55,476 | ERROR | Thread-614 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:57:55,554 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:58:07,514 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:58:25,231 | ERROR | Thread-619 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:58:25,310 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:58:38,071 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:58:55,240 | ERROR | Thread-623 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:58:55,260 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:59:08,529 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:59:25,247 | ERROR | Thread-628 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:59:25,317 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 19:59:39,086 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 19:59:55,267 | ERROR | Thread-632 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 19:59:55,369 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:00:09,436 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:00:29,586 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:00:35,268 | ERROR | Thread-636 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:00:35,364 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:00:50,039 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:01:10,194 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:01:15,341 | ERROR | Thread-641 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:01:15,370 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:01:30,648 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:01:50,816 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:01:55,288 | ERROR | Thread-646 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:01:55,374 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:02:11,158 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:02:31,432 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:02:35,301 | ERROR | Thread-651 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:02:35,379 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:02:51,861 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:03:12,001 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:03:15,312 | ERROR | Thread-656 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:03:15,380 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:03:32,370 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:03:52,527 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:03:55,329 | ERROR | Thread-660 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:03:55,393 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:04:12,882 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:04:33,045 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:04:35,334 | ERROR | Thread-665 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:04:35,397 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:04:53,382 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:05:13,526 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:05:15,348 | ERROR | Thread-669 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:05:15,400 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:05:33,891 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:05:54,072 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:05:55,360 | ERROR | Thread-673 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:05:55,390 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:06:14,489 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:06:34,733 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:06:35,369 | ERROR | Thread-678 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:06:35,400 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:06:55,104 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:07:15,255 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:07:15,387 | ERROR | Thread-683 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:07:15,415 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:07:35,712 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:07:55,388 | ERROR | Thread-687 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:07:55,417 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:08:06,171 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:08:25,398 | ERROR | Thread-692 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:08:25,466 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:08:36,526 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:08:55,411 | ERROR | Thread-696 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:08:55,420 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:09:07,082 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:09:25,416 | ERROR | Thread-701 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:09:25,474 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:09:37,435 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:09:55,424 | ERROR | Thread-705 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:09:55,521 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:10:07,985 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:10:25,431 | ERROR | Thread-709 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:10:25,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:10:38,426 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:10:55,439 | ERROR | Thread-714 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:10:55,515 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:11:08,782 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:11:25,449 | ERROR | Thread-719 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:11:25,469 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:11:39,545 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:12:00,015 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:12:05,458 | ERROR | Thread-724 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:12:05,471 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:12:20,355 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:12:40,532 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:12:45,485 | ERROR | Thread-729 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:12:45,585 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:13:00,859 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:13:20,983 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:13:25,495 | ERROR | Thread-734 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:13:25,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:13:41,262 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:14:01,457 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:14:05,251 | ERROR | Thread-738 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:14:05,291 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:14:21,780 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:14:41,952 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:14:45,261 | ERROR | Thread-743 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:14:45,299 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:15:02,390 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:15:22,552 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:15:25,263 | ERROR | Thread-748 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:15:25,305 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:15:42,994 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:16:03,136 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:16:05,275 | ERROR | Thread-752 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:16:05,310 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:16:23,502 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:16:43,655 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:16:45,288 | ERROR | Thread-757 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:16:45,304 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:17:03,989 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:17:24,126 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:17:25,298 | ERROR | Thread-762 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:17:25,390 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:17:44,478 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:18:04,565 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:18:05,311 | ERROR | Thread-766 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:18:05,377 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:18:24,982 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:18:45,300 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:18:45,324 | ERROR | Thread-771 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:18:45,385 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:19:05,583 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:19:25,332 | ERROR | Thread-776 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:19:25,381 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:19:35,934 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:19:55,344 | ERROR | Thread-780 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:19:55,425 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:20:06,482 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:20:25,348 | ERROR | Thread-785 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:20:25,381 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:20:37,142 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:20:55,357 | ERROR | Thread-789 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:20:55,438 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:21:07,497 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:21:25,367 | ERROR | Thread-794 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:21:25,389 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:21:38,152 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:21:55,380 | ERROR | Thread-798 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:21:55,433 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:22:09,006 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:22:25,383 | ERROR | Thread-802 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:22:25,391 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:22:39,460 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:22:59,625 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 20:23:05,395 | ERROR | Thread-806 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 20:23:05,495 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 20:23:19,972 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:26:50,786 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:26:50,827 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:27:01,124 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 20:27:01,243 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 20:27:05,824 | WARN | 168417 | client.business.AccountBusiness | | id:168417 repeat login, token count:78 +03 二月 2026 | 20:27:05,907 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 20:27:05,907 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 20:27:05,907 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 20:27:06,009 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:27:06,353 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 20:35:40,988 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:35:41,038 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:35:51,619 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 20:35:51,664 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 20:47:53,601 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:47:53,651 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:48:13,942 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:48:13,994 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:48:14,911 | INFO | 168417 | client.business.AccountBusiness | | id:168417 login +03 二月 2026 | 20:48:14,954 | INFO | 168417 | client.business.AccountBusiness | | ==========> password111 = blm523 +03 二月 2026 | 20:53:01,548 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:53:01,605 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:53:49,683 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:53:49,737 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:53:55,605 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:53:55,654 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:55:11,136 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:55:11,188 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:55:37,225 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:55:37,279 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:55:56,691 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:55:56,743 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:56:01,813 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 20:56:01,813 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 20:56:01,813 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 20:56:03,060 | ERROR | 168417 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 20:58:44,877 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:58:44,924 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:58:50,465 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 20:58:50,465 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 20:58:50,465 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 20:59:50,745 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 20:59:50,797 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 20:59:55,557 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 20:59:55,557 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 20:59:55,557 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 20:59:55,624 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 20:59:56,060 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 20:59:59,270 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 20:59:59,331 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 20:59:59,614 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 20:59:59,775 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 20:59:59,813 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:00:00,222 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:00:13,226 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:01:14,157 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:01:14,204 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:01:18,780 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:01:18,780 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:01:18,780 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:01:18,824 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:01:19,572 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:01:22,301 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:01:22,335 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:01:22,508 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:01:22,643 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:01:22,680 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:01:23,022 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:04:53,898 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:04:53,954 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:04:57,951 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:04:57,951 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:04:57,951 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:04:58,074 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:04:58,607 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:05:01,305 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:05:01,350 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:05:01,542 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:05:01,751 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:05:01,803 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:05:02,145 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:06:05,780 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:06:05,826 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:06:09,872 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:06:09,872 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:06:09,872 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:06:09,950 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:06:10,328 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:06:12,256 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:06:12,292 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:06:12,659 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:06:12,775 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:06:12,835 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:06:13,136 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:08:33,960 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:08:34,017 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:08:38,196 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:08:38,196 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:08:38,196 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:08:38,243 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:08:38,671 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:08:51,442 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:08:51,489 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:08:55,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:08:55,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:08:55,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:08:55,310 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:08:55,656 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:08:58,997 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:08:59,031 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:08:59,233 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:08:59,339 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:08:59,375 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:08:59,697 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:11:50,015 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:11:50,060 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:11:54,569 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:11:54,569 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:11:54,569 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:11:54,685 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:11:55,235 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:11:58,045 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:11:58,101 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:11:58,326 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:11:58,447 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:11:58,486 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:11:58,785 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:13:40,295 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:13:40,345 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:13:45,421 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:13:45,421 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:13:45,421 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:13:45,563 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:13:45,944 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:13:48,385 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:13:48,444 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:13:48,709 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:13:48,897 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:13:48,932 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:13:49,265 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:15:13,339 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:15:13,384 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:15:17,618 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:15:17,618 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:15:17,618 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:15:17,708 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:15:18,091 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:15:20,444 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:15:20,506 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:15:20,692 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:15:20,824 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:15:20,866 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:15:21,269 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:19:49,666 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:19:49,710 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:19:54,410 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:19:54,410 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:19:54,410 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:19:54,533 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:19:54,919 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:19:57,270 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:19:57,339 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:19:57,671 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:19:57,870 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:19:57,908 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:19:58,579 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:25:23,762 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:25:23,808 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:25:27,936 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:25:27,937 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:25:27,937 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:25:28,033 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:25:28,367 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:25:30,727 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:25:30,758 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:25:30,970 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:25:31,103 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:25:31,142 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:25:31,444 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:38:36,145 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:38:36,193 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:38:40,469 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:38:40,470 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:38:40,470 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:108682 +03 二月 2026 | 21:38:40,519 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:38:41,004 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:38:43,094 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:108682 +03 二月 2026 | 21:38:43,137 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:38:43,344 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:38:43,471 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:38:43,514 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:38:43,839 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=108682, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:38:47,951 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[203, 103, 108, 206, 207, 104, 204, 205, 202, 201, 209, 101, 105, 208] +03 二月 2026 | 21:38:47,951 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 21:38:47,951 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 21:38:47,951 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 21:38:47,952 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 21:38:56,843 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:38:59,581 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 21:39:00,674 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:39:00,674 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:39:00,674 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:896976 +03 二月 2026 | 21:39:01,076 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:39:02,768 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:896976 +03 二月 2026 | 21:39:02,829 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 21:39:03,039 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 21:39:03,163 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 21:39:03,163 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 21:39:03,163 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 21:39:03,540 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 21:39:03,655 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 21:39:03,687 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 21:39:03,687 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3396000 +03 二月 2026 | 21:39:03,687 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 21:39:03,687 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 21:39:03,957 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 21:39:04,193 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7fead954 +03 二月 2026 | 21:39:04,908 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 21:39:04,908 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 21:39:04,908 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 21:39:04,954 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 21:39:04,991 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 21:39:05,156 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:39:15,412 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 21:39:15,467 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 21:39:20,461 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:39:20,501 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:39:24,621 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:39:24,856 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:39:24,857 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:39:24,857 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:896976 +03 二月 2026 | 21:39:25,295 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:39:27,538 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:896976 +03 二月 2026 | 21:39:27,574 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 21:39:27,780 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 21:39:27,886 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 21:39:27,887 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 21:39:27,887 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 21:39:28,392 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 21:39:28,504 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 21:39:28,543 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 21:39:28,544 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3396000 +03 二月 2026 | 21:39:28,544 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 21:39:28,544 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 21:39:28,722 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 21:39:28,975 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@70fceac3 +03 二月 2026 | 21:39:29,690 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 21:39:29,690 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 21:39:29,691 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 21:39:29,730 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 21:39:29,772 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 21:39:29,925 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:39:30,243 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=896976, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 21:39:33,375 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 21:39:33,810 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 21:39:34,063 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 21:39:34,064 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 21:39:34,136 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 21:39:34,309 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 21:39:34,418 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 21:39:34,455 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 21:39:34,679 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@e503a61 +03 二月 2026 | 21:39:38,563 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 105, 205, 105, 207, 103, 203, 102, 204, 206] +03 二月 2026 | 21:39:38,563 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 21:39:38,563 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 21:39:38,563 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[106, 106, 106, 106] +03 二月 2026 | 21:39:38,563 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101] +03 二月 2026 | 21:39:53,050 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:39:53,091 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:39:57,450 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:39:57,450 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:39:57,450 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:896976 +03 二月 2026 | 21:39:57,519 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:39:57,929 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:40:00,303 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:896976 +03 二月 2026 | 21:40:00,350 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:40:00,572 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:40:00,687 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:40:00,723 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:40:01,070 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=896976, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:40:05,148 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 105, 205, 105, 103, 203, 102, 204, 207, 207, 206] +03 二月 2026 | 21:40:05,148 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 21:40:05,148 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 21:40:05,148 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 21:40:05,148 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 21:40:10,016 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[106, 105, 205, 106, 105, 207, 103, 106, 106, 203, 204] +03 二月 2026 | 21:40:10,017 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[102, 102, 102] +03 二月 2026 | 21:40:10,017 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 21:40:10,017 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 21:40:10,017 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 102, 208, 209, 106, 106, 106, 106] +03 二月 2026 | 21:40:14,073 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:40:24,191 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:40:34,314 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:40:44,434 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:42:07,097 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:42:07,141 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:42:11,114 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:42:11,114 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:42:11,114 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:896976 +03 二月 2026 | 21:42:11,165 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:42:11,663 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:42:13,781 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:896976 +03 二月 2026 | 21:42:13,816 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:42:14,002 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:42:14,115 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:42:14,149 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:42:14,459 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=896976, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:42:18,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 205, 105, 103, 203, 204, 207, 206] +03 二月 2026 | 21:42:18,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 21:42:18,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 21:42:18,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 21:42:18,587 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 21:42:22,699 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 106, 205, 106, 207, 103, 106, 106, 203, 102, 204] +03 二月 2026 | 21:42:22,699 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[105, 105, 105] +03 二月 2026 | 21:42:22,699 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 21:42:22,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 21:42:22,700 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 101, 105, 208, 209, 102, 102, 106, 106, 106, 106] +03 二月 2026 | 21:42:27,464 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:42:37,827 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:42:48,002 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:42:58,118 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:43:08,282 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:43:18,392 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:43:28,507 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:43:46,513 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 21:43:46,566 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 21:43:50,892 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 21:43:50,892 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 21:43:50,892 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:896976 +03 二月 2026 | 21:43:50,995 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 21:43:51,369 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 21:43:53,591 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:896976 +03 二月 2026 | 21:43:53,624 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:43:53,816 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 21:43:53,930 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 21:43:53,963 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 21:43:54,295 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=896976, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 21:43:58,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 203, 204, 207, 206] +03 二月 2026 | 21:43:58,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 21:43:58,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 21:43:58,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 21:43:58,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 21:44:07,297 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:44:17,423 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:44:27,541 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:44:37,681 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:44:47,805 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:44:57,920 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:45:08,034 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:45:18,157 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:45:28,273 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:45:38,481 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:45:48,606 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:45:58,750 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:46:08,855 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:46:18,991 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:46:29,112 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:46:39,234 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:46:49,346 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:46:59,471 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:47:09,571 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:47:19,706 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:47:29,887 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:47:40,014 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:47:50,129 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:48:00,231 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:48:10,342 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:48:20,445 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:48:30,552 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:48:40,689 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:48:50,858 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:49:00,990 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:49:11,104 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:49:21,265 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:49:31,371 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:49:41,472 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:49:51,570 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:50:01,708 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:50:11,819 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:50:21,952 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:50:32,070 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:50:42,209 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:50:52,330 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:51:02,440 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:51:12,565 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:51:22,697 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:51:32,801 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:51:42,972 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:51:53,094 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:52:03,196 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:52:13,302 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:52:23,410 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:52:33,545 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:52:43,660 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:52:53,789 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:53:03,984 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:53:14,091 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:53:24,204 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:53:34,315 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:53:44,439 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:53:54,544 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:54:04,657 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:54:14,866 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:54:24,984 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:54:35,090 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:54:45,202 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:54:55,316 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:55:05,417 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:55:15,522 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:55:25,623 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:55:35,750 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:55:45,881 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:55:56,111 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:56:06,214 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:56:16,335 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:56:26,449 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:56:36,570 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:56:46,714 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:56:56,820 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:57:06,924 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:57:17,024 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:57:27,134 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:57:37,237 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:57:47,347 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:57:57,501 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:58:07,606 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:58:17,707 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:58:27,813 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:58:37,927 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:58:48,071 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:58:58,173 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:59:08,311 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:59:18,435 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:59:28,542 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:59:38,647 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:59:48,780 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 21:59:58,917 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:00:09,060 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:00:19,219 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:00:29,372 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:00:37,910 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:00:37,964 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:00:42,251 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:00:42,251 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:00:42,251 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:896976 +03 二月 2026 | 22:00:42,290 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:00:42,848 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:00:44,936 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:896976 +03 二月 2026 | 22:00:44,983 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:00:45,199 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:00:45,320 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:00:45,359 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:00:45,706 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=896976, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 22:00:49,822 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 203, 204, 207, 206] +03 二月 2026 | 22:00:49,822 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:00:49,822 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:00:49,822 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:00:49,822 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:00:58,708 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:02:10,196 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:02:10,251 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:02:14,351 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:02:14,351 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:02:14,351 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:896976 +03 二月 2026 | 22:02:14,474 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:02:14,865 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:02:16,955 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:896976 +03 二月 2026 | 22:02:17,027 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:02:17,296 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:02:17,463 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:02:17,524 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:02:17,832 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=896976, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 22:02:21,904 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 203, 204, 207, 206] +03 二月 2026 | 22:02:21,904 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:02:21,904 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:02:21,904 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:02:21,904 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:02:25,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 204, 207, 206, 205] +03 二月 2026 | 22:02:25,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:02:25,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:02:25,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:02:25,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 101, 202, 208, 209, 102, 102, 105, 105, 203, 203, 106, 106, 106, 106] +03 二月 2026 | 22:02:27,170 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 106, 105, 205, 106, 105, 103, 106, 106, 203, 102, 204] +03 二月 2026 | 22:02:27,170 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:02:27,170 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 207, 206] +03 二月 2026 | 22:02:27,170 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:02:27,170 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 205, 101, 202, 208, 208, 209, 102, 102, 105, 105, 203, 203, 106, 106, 106, 106] +03 二月 2026 | 22:02:30,836 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:02:41,037 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:02:51,179 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:03:01,301 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:03:11,431 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:03:21,549 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:03:31,683 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:03:41,806 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:03:51,951 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:04:02,062 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:04:12,172 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:04:22,293 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:04:33,911 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:04:33,962 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:04:38,163 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:04:38,163 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:04:38,163 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:896976 +03 二月 2026 | 22:04:38,293 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:04:38,609 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:04:40,758 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:896976 +03 二月 2026 | 22:04:40,795 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:04:40,984 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:04:41,105 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:04:41,249 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:04:41,616 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=896976, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 22:04:45,727 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[204, 205] +03 二月 2026 | 22:04:45,727 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:04:45,727 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:04:45,727 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:04:45,727 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:04:50,897 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[205, 209] +03 二月 2026 | 22:04:50,898 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:04:50,898 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:04:50,898 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:04:50,898 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103, 205, 101, 202, 107, 207, 206, 208, 209, 205, 206, 102, 102, 105, 105, 203, 203, 106, 106, 106, 106] +03 二月 2026 | 22:04:54,618 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:05:04,734 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:05:14,852 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:05:25,000 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:05:25,242 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:05:25,242 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:05:25,242 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:450468 +03 二月 2026 | 22:05:25,686 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:05:27,369 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:450468 +03 二月 2026 | 22:05:27,417 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:05:27,597 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:05:27,734 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:05:27,734 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:05:27,734 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:05:28,214 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:05:28,325 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:05:28,358 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:05:28,358 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3990000 +03 二月 2026 | 22:05:28,358 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:05:28,358 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:05:28,514 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:05:28,767 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6ddbe989 +03 二月 2026 | 22:05:29,511 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:05:29,511 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:05:29,511 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:05:29,543 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:05:29,576 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:05:29,835 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:05:30,182 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=450468, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 22:05:35,359 | ERROR | Thread-30 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 22:05:35,399 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 22:05:35,929 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:450468 +03 二月 2026 | 22:05:35,964 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:05:36,161 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:05:36,281 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:05:36,281 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:05:36,281 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:05:36,624 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:05:36,786 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:05:36,839 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:05:36,839 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3990000 +03 二月 2026 | 22:05:36,839 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:05:36,839 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:05:36,988 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:05:37,221 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6ddbe989 +03 二月 2026 | 22:05:38,005 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:05:38,005 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:05:38,005 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:05:38,037 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:05:38,069 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:05:38,216 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:05:38,862 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:05:39,780 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:05:39,780 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:05:39,781 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:503810 +03 二月 2026 | 22:05:40,128 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:05:41,798 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:503810 +03 二月 2026 | 22:05:41,866 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:05:42,117 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:05:42,271 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:05:42,271 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:05:42,271 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:05:42,612 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:05:42,720 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:05:42,753 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:05:42,753 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3990000 +03 二月 2026 | 22:05:42,753 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:05:42,753 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:05:42,916 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:05:43,248 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6ddbe989 +03 二月 2026 | 22:05:44,155 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:05:44,155 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:05:44,155 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:05:44,202 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:05:44,256 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:05:44,437 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:05:47,247 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:05:47,299 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:05:51,124 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:05:51,492 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:05:51,492 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:05:51,492 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:450468 +03 二月 2026 | 22:05:51,954 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:05:54,132 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:450468 +03 二月 2026 | 22:05:54,173 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:05:54,402 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:05:54,514 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:05:54,514 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:05:54,515 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:05:54,972 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:05:55,084 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:05:55,124 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:05:55,124 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3990000 +03 二月 2026 | 22:05:55,125 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:05:55,125 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:05:55,282 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:05:55,549 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@7dcd5307 +03 二月 2026 | 22:05:56,343 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:05:56,343 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:05:56,343 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:05:56,439 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:05:56,475 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:05:56,686 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:05:56,989 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=450468, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 22:06:00,066 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 22:06:00,323 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 22:06:00,513 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 22:06:00,514 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 22:06:00,582 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 22:06:00,806 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 22:06:00,923 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 22:06:00,961 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 22:06:00,997 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@e503a61 +03 二月 2026 | 22:06:02,403 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 106, 205, 106, 105, 207, 103, 106, 106, 203, 102, 204] +03 二月 2026 | 22:06:02,403 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:06:02,403 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[103, 104, 105] +03 二月 2026 | 22:06:02,403 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:06:02,404 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[103] +03 二月 2026 | 22:06:20,028 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:06:30,029 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:06:40,030 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:06:50,030 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:07:00,030 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:07:10,030 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:07:20,031 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:07:30,032 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:07:40,032 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:07:50,032 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:08:00,033 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:08:10,034 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:08:20,034 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:08:30,035 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:08:40,036 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:08:50,036 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:09:00,037 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:09:10,037 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:09:20,037 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:09:30,038 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:09:40,038 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:09:50,039 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:10:00,039 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:10:10,039 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:10:20,040 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:10:30,040 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:10:40,040 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:10:50,041 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:11:00,042 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:11:10,043 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:11:20,043 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:11:30,044 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:11:40,044 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:11:50,045 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:12:00,045 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:12:10,045 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:12:20,046 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:12:30,046 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:12:40,047 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:12:50,047 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:13:00,047 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:13:10,047 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:13:20,048 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:13:30,048 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:13:40,049 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:13:50,049 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:14:00,050 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:14:14,829 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:14:14,882 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:14:19,137 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:14:19,137 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:14:19,137 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:450468 +03 二月 2026 | 22:14:19,209 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:14:19,608 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:14:22,023 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:450468 +03 二月 2026 | 22:14:22,060 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:14:22,264 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:14:22,370 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:14:22,403 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:14:22,811 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=450468, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 22:14:26,942 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 107, 101, 204, 208, 107, 207, 205, 206, 204, 104] +03 二月 2026 | 22:14:26,942 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:14:26,943 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:14:26,944 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:14:26,944 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:14:29,547 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 107, 204, 208, 107, 207, 205, 206, 204, 104, 206] +03 二月 2026 | 22:14:29,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:14:29,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:14:29,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:14:29,548 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 201, 104, 105] +03 二月 2026 | 22:14:33,734 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 204, 208, 107, 207, 205, 206, 204, 104, 206, 203] +03 二月 2026 | 22:14:33,735 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:14:33,735 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:14:33,735 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:14:33,735 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 201, 201, 104, 105, 108, 109] +03 二月 2026 | 22:14:35,814 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:14:36,918 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 204, 208, 207, 205, 206, 204, 104, 206, 203, 107, 107] +03 二月 2026 | 22:14:36,918 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:14:36,918 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:14:36,918 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:14:36,918 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 107, 201, 201, 103, 104, 105, 108, 109] +03 二月 2026 | 22:14:36,920 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[105, 204, 208, 207, 205, 206, 204, 104, 206, 203, 107] +03 二月 2026 | 22:14:36,920 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:14:36,920 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:14:36,920 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:14:36,920 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[101, 107, 201, 201, 103, 104, 105, 108, 109] +03 二月 2026 | 22:14:45,927 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:14:56,071 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:15:06,257 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:15:16,395 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:15:26,509 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:15:36,647 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:15:46,775 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:15:56,882 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:16:06,991 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:16:17,131 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:16:27,272 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:16:37,377 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:16:41,291 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:503810 +03 二月 2026 | 22:16:41,330 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +03 二月 2026 | 22:16:41,397 | ERROR | 168417 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 22:16:45,521 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 22:16:45,587 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 22:16:52,895 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:16:52,948 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:16:57,678 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:17:00,836 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:17:01,826 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:17:01,826 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:17:01,827 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:361375 +03 二月 2026 | 22:17:02,159 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:17:03,779 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:361375 +03 二月 2026 | 22:17:03,813 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:17:04,010 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:17:04,135 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:17:04,135 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:17:04,135 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:17:04,523 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:17:04,636 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:17:04,684 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:17:04,684 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3989000 +03 二月 2026 | 22:17:04,684 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:17:04,684 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:17:04,845 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:17:05,164 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@786e4c48 +03 二月 2026 | 22:17:05,880 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:17:05,880 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:17:05,880 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:17:05,929 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:17:05,967 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:17:06,113 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:17:09,538 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 22:17:09,688 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 22:17:09,916 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 22:17:12,208 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{nick=小猫, seat=2, ready=0, sex=1, ip=103.43.132.251, hp_info={cur_hp=620850300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, aid=112233} +03 二月 2026 | 22:17:13,615 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 22:17:13,731 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 22:17:13,965 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 22:17:13,965 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 22:17:14,038 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 22:17:14,245 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 22:17:14,344 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 22:17:14,384 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 22:17:14,422 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@1e7b4a45 +03 二月 2026 | 22:17:14,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 101, 204, 204, 206, 206, 107, 209, 201, 107, 203, 109, 107, 106] +03 二月 2026 | 22:17:14,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:17:14,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:17:14,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:17:14,423 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:17:26,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 101, 204, 204, 206, 206, 107, 201, 107, 203, 109, 107, 106, 202] +03 二月 2026 | 22:17:26,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:17:26,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:17:26,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:17:26,739 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 203] +03 二月 2026 | 22:17:29,491 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:17:33,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 101, 204, 204, 206, 107, 201, 107, 203, 109, 107, 106, 202, 201, 201] +03 二月 2026 | 22:17:33,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:17:33,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:17:33,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:17:33,254 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 206, 203, 204] +03 二月 2026 | 22:17:33,259 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[102, 101, 204, 204, 206, 107, 201, 107, 203, 109, 107, 202, 201, 201] +03 二月 2026 | 22:17:33,259 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:17:33,259 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:17:33,260 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:17:33,260 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 206, 203, 204] +03 二月 2026 | 22:17:39,491 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:17:49,492 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:17:59,493 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:18:09,494 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:18:19,494 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:18:29,495 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:18:39,495 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:18:49,496 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:18:59,496 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:19:09,497 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:19:19,497 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:19:29,497 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:19:39,497 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:19:49,498 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:19:59,499 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:20:09,499 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:20:19,500 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:20:29,500 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:20:39,501 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:20:49,501 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:20:59,501 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:21:09,502 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:21:19,503 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:21:29,503 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:21:39,504 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:21:49,505 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:21:59,505 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:22:09,506 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:22:19,507 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:22:29,507 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:22:39,507 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:22:49,508 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:22:59,510 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:23:09,510 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:23:19,511 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:23:29,512 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:23:39,512 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:23:49,513 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:23:59,513 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:24:09,513 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:24:19,514 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:24:29,515 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:24:39,515 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:24:49,515 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:24:59,516 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:25:09,516 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:25:19,517 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:25:29,517 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:25:39,518 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:25:49,518 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:25:59,519 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:26:09,520 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:26:24,912 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:26:24,964 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:26:26,509 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:26:26,566 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:26:29,491 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:26:29,865 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:26:29,867 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:26:29,867 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:854251 +03 二月 2026 | 22:26:30,348 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:26:32,483 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:854251 +03 二月 2026 | 22:26:32,540 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:26:32,750 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:26:32,847 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:26:32,847 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:26:32,847 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:26:33,294 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:26:33,415 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:26:33,464 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:26:33,464 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3988000 +03 二月 2026 | 22:26:33,464 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:26:33,465 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:26:33,623 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:26:33,822 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1a250a1c +03 二月 2026 | 22:26:34,498 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:26:34,498 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:26:34,498 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:26:34,545 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:26:34,679 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:26:34,865 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:26:35,147 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=854251, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 22:26:38,234 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 22:26:38,612 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 22:26:38,813 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 22:26:38,813 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 22:26:38,897 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 22:26:39,080 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 22:26:39,219 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 22:26:39,325 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 22:26:39,361 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@2bf3f3b +03 二月 2026 | 22:26:39,361 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[201, 107, 206, 102, 205, 205, 109, 209, 203, 205, 204, 101, 103, 106] +03 二月 2026 | 22:26:39,361 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:26:39,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:26:39,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:26:39,362 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:26:58,188 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:27:08,188 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:27:15,546 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[201, 107, 206, 102, 205, 205, 109, 203, 205, 204, 101, 103, 106, 107, 107, 107] +03 二月 2026 | 22:27:15,546 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:27:15,546 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:27:15,546 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:27:15,546 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 207] +03 二月 2026 | 22:27:15,552 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 206, 102, 205, 205, 109, 203, 205, 204, 101, 103, 106, 107, 107, 107] +03 二月 2026 | 22:27:15,554 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:27:15,554 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:27:15,554 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:27:15,554 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 207] +03 二月 2026 | 22:27:15,558 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[107, 206, 102, 205, 205, 203, 205, 204, 101, 103, 106, 107, 107, 107] +03 二月 2026 | 22:27:15,558 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:27:15,558 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:27:15,558 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:27:15,558 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[209, 207] +03 二月 2026 | 22:27:18,189 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:27:28,190 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:27:38,190 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:27:48,190 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:27:58,191 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:28:08,191 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:28:18,192 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:28:28,192 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:28:38,193 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:28:48,193 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:28:58,194 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:29:08,194 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:29:18,195 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:29:28,195 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:29:38,195 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:29:48,196 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:29:58,196 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:30:08,197 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:30:18,198 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:30:28,198 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:30:38,198 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:30:48,199 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:30:58,200 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:31:08,201 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:31:18,202 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:32:00,278 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:32:00,339 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:32:04,466 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:32:04,734 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:32:04,734 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:32:04,734 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:170282 +03 二月 2026 | 22:32:07,900 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:32:07,958 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:32:12,187 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:32:12,464 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:32:12,464 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:32:12,464 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:170282 +03 二月 2026 | 22:32:13,045 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:32:15,251 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:170282 +03 二月 2026 | 22:32:15,286 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:32:15,495 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:32:15,596 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:32:15,596 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:32:15,596 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:32:16,066 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:32:16,216 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:32:16,258 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:32:16,258 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3987000 +03 二月 2026 | 22:32:16,258 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:32:16,258 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:32:16,416 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:32:16,678 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65bcb9a1 +03 二月 2026 | 22:32:17,386 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:32:17,386 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:32:17,387 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:32:17,436 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:32:17,487 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:32:17,658 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:32:17,960 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=170282, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 22:32:21,129 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 22:32:21,409 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 22:32:21,607 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 22:32:21,607 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 22:32:21,696 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 22:32:21,942 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 22:32:22,067 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 22:32:22,107 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 22:32:22,153 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@895497b +03 二月 2026 | 22:32:22,153 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 102, 207, 204, 201, 204, 205, 101, 101, 209, 205] +03 二月 2026 | 22:32:22,153 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:32:22,153 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:32:22,153 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:32:22,153 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:32:40,346 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 207, 204, 201, 204, 205, 101, 101, 209, 205, 205] +03 二月 2026 | 22:32:40,347 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:32:40,347 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:32:40,347 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:32:40,347 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 202] +03 二月 2026 | 22:32:41,017 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:32:51,017 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:32:55,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 201, 204, 205, 101, 101, 205, 205] +03 二月 2026 | 22:32:55,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:32:55,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 22:32:55,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:32:55,263 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 202, 208] +03 二月 2026 | 22:32:55,264 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 201, 205, 101, 101, 205, 205] +03 二月 2026 | 22:32:55,265 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:32:55,265 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 22:32:55,265 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:32:55,265 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 202, 208] +03 二月 2026 | 22:32:55,267 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 202, 201, 205, 101, 101, 205, 205] +03 二月 2026 | 22:32:55,267 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:32:55,267 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 22:32:55,267 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:32:55,267 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 202, 208] +03 二月 2026 | 22:33:01,018 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:33:01,125 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 202, 201, 205, 101, 101, 205, 205, 201, 201, 201] +03 二月 2026 | 22:33:01,125 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:33:01,125 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 22:33:01,125 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:33:01,125 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 202, 206, 209, 207] +03 二月 2026 | 22:33:01,126 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 202, 201, 101, 101, 205, 205, 201, 201, 201] +03 二月 2026 | 22:33:01,126 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:33:01,126 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 22:33:01,126 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:33:01,127 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 202, 206, 209, 207] +03 二月 2026 | 22:33:01,128 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 202, 101, 101, 205, 205, 201, 201, 201] +03 二月 2026 | 22:33:01,128 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:33:01,129 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 22:33:01,129 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:33:01,129 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 202, 206, 209, 207] +03 二月 2026 | 22:33:01,130 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 101, 101, 205, 205, 201, 201, 201] +03 二月 2026 | 22:33:01,130 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:33:01,130 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[208, 209, 207] +03 二月 2026 | 22:33:01,131 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:33:01,131 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 202, 206, 209, 207] +03 二月 2026 | 22:33:11,018 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:33:21,018 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:33:31,018 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:33:41,019 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:33:51,019 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:34:01,020 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:34:11,020 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:34:21,020 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:34:31,021 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:34:41,022 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:34:51,022 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:35:01,024 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:35:11,024 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:35:21,024 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:35:31,025 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:35:41,026 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:35:51,027 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:36:01,028 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:36:11,028 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:36:21,029 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:36:31,030 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:36:41,030 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:36:51,031 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:37:01,031 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:37:11,032 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:37:21,032 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:37:31,033 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:37:41,033 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:37:51,033 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:38:01,034 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:38:11,035 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:38:21,036 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:38:31,036 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:38:41,037 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:38:49,938 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:38:49,999 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:38:54,257 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:38:54,257 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:38:54,257 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:170282 +03 二月 2026 | 22:38:54,322 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:38:54,793 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:38:57,148 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:170282 +03 二月 2026 | 22:38:57,185 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:38:57,391 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:38:57,537 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:38:57,581 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:38:57,909 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=170282, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 22:39:02,056 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 101, 101, 205, 205, 205, 201, 201] +03 二月 2026 | 22:39:02,056 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:39:02,056 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:39:02,056 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:39:02,056 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:39:10,915 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:39:15,744 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 101, 101, 205, 205, 205, 201, 203, 203] +03 二月 2026 | 22:39:15,744 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:39:15,744 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:39:15,744 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:39:15,744 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 202, 206, 109, 209, 207] +03 二月 2026 | 22:39:15,754 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 101, 101, 205, 205, 205, 201, 203] +03 二月 2026 | 22:39:15,754 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:39:15,754 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:39:15,754 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:39:15,754 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 202, 206, 109, 209, 207] +03 二月 2026 | 22:39:21,044 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:39:31,223 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:39:41,332 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:39:51,550 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:39:59,823 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:39:59,883 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:40:04,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:40:04,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:40:04,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:170282 +03 二月 2026 | 22:40:04,306 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:40:04,697 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:40:06,866 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:170282 +03 二月 2026 | 22:40:06,903 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:40:07,108 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:40:07,224 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:40:07,269 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:40:07,598 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=170282, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 22:40:11,735 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 101, 101, 205, 205, 205, 201, 203] +03 二月 2026 | 22:40:11,735 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:40:11,735 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:40:11,735 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:40:11,735 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:40:20,601 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:40:23,676 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 101, 101, 205, 205, 201, 203, 207, 207] +03 二月 2026 | 22:40:23,676 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:40:23,676 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:40:23,676 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:40:23,676 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 202, 206, 109, 201, 209, 207, 206, 204] +03 二月 2026 | 22:40:23,681 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 109, 202, 101, 101, 205, 205, 201, 203, 207, 207] +03 二月 2026 | 22:40:23,681 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:40:23,681 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:40:23,681 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:40:23,681 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 202, 206, 109, 201, 209, 207, 206, 204] +03 二月 2026 | 22:40:30,714 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:40:40,825 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:40:50,930 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:41:01,027 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:41:11,138 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:41:21,288 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:41:31,404 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:41:41,517 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:41:51,707 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:42:01,852 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:42:11,958 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:42:22,093 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:42:32,195 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:42:42,313 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:42:52,456 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:43:07,148 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:43:07,209 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:43:11,271 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:43:11,271 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:43:11,271 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:170282 +03 二月 2026 | 22:43:11,336 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:43:11,882 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:43:14,288 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:170282 +03 二月 2026 | 22:43:14,323 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:43:14,589 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [112233,168417]] +03 二月 2026 | 22:43:14,716 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:43:14,757 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:43:15,087 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=170282, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 22:43:19,171 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 101, 101, 205, 205, 201, 203, 207] +03 二月 2026 | 22:43:19,172 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:43:19,172 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:43:19,172 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:43:19,173 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:43:21,425 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 101, 101, 205, 205, 201, 203, 106] +03 二月 2026 | 22:43:21,425 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:43:21,425 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:43:21,425 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:43:21,425 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 207, 202, 206, 109, 201, 203, 209, 207, 206, 204] +03 二月 2026 | 22:43:28,091 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:43:38,251 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:43:43,871 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 101, 101, 205, 205, 201, 203, 206] +03 二月 2026 | 22:43:43,872 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:43:43,872 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:43:43,872 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:43:43,872 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 207, 202, 206, 109, 201, 203, 209, 209, 207, 206, 204, 105, 104] +03 二月 2026 | 22:43:48,368 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:43:52,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 101, 109, 202, 101, 101, 205, 205, 201, 203, 108] +03 二月 2026 | 22:43:52,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:43:52,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:43:52,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:43:52,725 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 207, 206, 202, 206, 109, 201, 203, 209, 203, 209, 207, 206, 204, 105, 104] +03 二月 2026 | 22:43:54,041 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 109, 202, 101, 101, 205, 205, 201, 203, 108, 208] +03 二月 2026 | 22:43:54,042 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:43:54,042 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:43:54,042 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:43:54,042 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 207, 206, 108, 202, 206, 109, 201, 203, 209, 203, 209, 209, 207, 206, 204, 105, 104] +03 二月 2026 | 22:43:56,285 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 109, 202, 101, 101, 205, 205, 201, 203, 108, 207] +03 二月 2026 | 22:43:56,285 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:43:56,285 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:43:56,285 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:43:56,285 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 207, 206, 108, 208, 202, 206, 109, 201, 203, 209, 203, 209, 205, 209, 207, 206, 204, 105, 104] +03 二月 2026 | 22:43:57,899 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[101, 109, 202, 101, 101, 205, 205, 201, 203, 108, 203] +03 二月 2026 | 22:43:57,900 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:43:57,900 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:43:57,900 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:43:57,900 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[102, 204, 204, 201, 207, 206, 108, 208, 207, 202, 206, 109, 201, 203, 209, 203, 209, 205, 105, 209, 207, 206, 204, 105, 104] +03 二月 2026 | 22:43:58,502 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:44:08,616 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:44:08,859 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:44:08,860 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:44:08,860 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:977810 +03 二月 2026 | 22:44:09,424 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:44:11,315 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:977810 +03 二月 2026 | 22:44:11,365 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:44:11,543 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:44:11,751 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:44:11,751 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:44:11,751 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:44:12,235 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:44:12,410 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:44:12,444 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:44:12,444 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3711000 +03 二月 2026 | 22:44:12,444 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:44:12,444 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:44:12,612 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:44:12,842 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@5fcf214a +03 二月 2026 | 22:44:13,599 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:44:13,599 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:44:13,599 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:44:13,631 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:44:13,761 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:44:13,982 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:44:14,292 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=977810, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 22:44:23,694 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 22:44:23,701 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 22:44:37,582 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:44:47,981 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:44:48,046 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:44:52,575 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:44:52,992 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:44:52,992 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:44:52,993 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:977810 +03 二月 2026 | 22:44:53,486 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:44:55,744 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:977810 +03 二月 2026 | 22:44:55,783 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:44:55,987 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 22:44:56,112 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:44:56,112 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:44:56,112 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:44:56,610 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:44:56,718 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:44:56,762 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:44:56,762 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:3711000 +03 二月 2026 | 22:44:56,762 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:44:56,763 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:44:56,934 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:44:57,174 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@57eeaee5 +03 二月 2026 | 22:44:57,912 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:44:57,913 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:44:57,913 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:44:57,958 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:44:57,996 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:44:58,164 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:44:58,524 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=977810, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 22:45:01,621 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=168417} +03 二月 2026 | 22:45:01,886 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 22:45:02,090 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 22:45:02,091 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 22:45:02,175 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 22:45:02,412 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 22:45:02,596 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 22:45:02,637 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 22:45:02,681 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@2bf3f3b +03 二月 2026 | 22:45:02,682 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 107, 205, 106, 103, 208, 101, 109, 202, 205, 107, 102, 108, 108] +03 二月 2026 | 22:45:02,682 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:45:02,682 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:45:02,682 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:45:02,682 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:45:07,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 107, 205, 106, 103, 101, 109, 202, 205, 107, 102, 108, 108, 102] +03 二月 2026 | 22:45:07,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:45:07,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:45:07,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:45:07,384 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[208, 108] +03 二月 2026 | 22:45:12,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 107, 205, 106, 103, 101, 109, 205, 107, 102, 108, 108, 102, 105] +03 二月 2026 | 22:45:12,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:45:12,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:45:12,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:45:12,577 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[208, 202, 108, 203] +03 二月 2026 | 22:45:17,005 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[104, 107, 205, 106, 103, 101, 109, 205, 107, 108, 108, 102, 105, 203] +03 二月 2026 | 22:45:17,005 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:45:17,005 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:45:17,005 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:45:17,005 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[208, 202, 102, 108, 203, 102] +03 二月 2026 | 22:45:21,565 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:45:24,210 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:45:25,198 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:45:25,198 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:45:25,198 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:622105 +03 二月 2026 | 22:45:25,541 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:45:27,194 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:622105 +03 二月 2026 | 22:45:27,228 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:45:27,425 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:45:27,552 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:45:27,553 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:45:27,553 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:45:27,918 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:45:28,063 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:45:28,097 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:45:28,097 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4185000 +03 二月 2026 | 22:45:28,097 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:45:28,097 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:45:28,259 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:45:28,484 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@57eeaee5 +03 二月 2026 | 22:45:29,223 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:45:29,223 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:45:29,223 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:45:29,256 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:45:29,298 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:45:29,451 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:45:33,028 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 22:45:33,140 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 22:45:33,328 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 22:45:39,523 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 2001-------状态状态------{nick=小猫, seat=2, ready=0, sex=1, ip=103.43.132.252, hp_info={cur_hp=620626300, total_hp=0, upper_limit=false, round_actual_hp=0}, spectator=false, online=1, portrait=https://thirdwx.qlogo.cn/mmopen/vi_32/5ThjLukqvIfAxNU5xZkaqh7iaS1CeJ80EYaT1wOPc1wOIRBFlvpuApn91z1QsibsibBuYGsX5QIkc3ic3j8f3C0n5Q/132, aid=112233} +03 二月 2026 | 22:45:40,427 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=1, aid=112233} +03 二月 2026 | 22:45:40,557 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 22:45:40,764 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 22:45:40,764 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态12345------------168417 +03 二月 2026 | 22:45:40,842 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 进入修好状态ttttttttttttttt------------2 +03 二月 2026 | 22:45:41,026 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | key+++++++++++++++++++++++++++++++++++168417 +03 二月 2026 | 22:45:41,182 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | circleId +++++++++++++++++++++++++0 +03 二月 2026 | 22:45:41,245 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | pid +++++++++++++++++++++++++0 +03 二月 2026 | 22:45:41,278 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | client com.robotcm.taurus.client.TaurusClient@2bf3f3b +03 二月 2026 | 22:45:42,531 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 104, 109, 205, 207, 101, 109, 206, 107, 102, 105, 105, 209, 203] +03 二月 2026 | 22:45:42,531 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:45:42,531 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:45:42,531 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:45:42,531 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201] +03 二月 2026 | 22:45:43,000 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:45:45,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 104, 109, 205, 207, 109, 206, 107, 102, 105, 105, 209, 203, 207] +03 二月 2026 | 22:45:45,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:45:45,970 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:45:45,971 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:45:45,971 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[201, 107, 102, 103] +03 二月 2026 | 22:45:48,308 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 104, 205, 207, 109, 206, 107, 102, 105, 105, 209, 203, 207, 103] +03 二月 2026 | 22:45:48,309 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:45:48,309 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:45:48,309 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:45:48,309 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 201, 107, 107, 102, 103] +03 二月 2026 | 22:45:51,524 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 104, 205, 207, 109, 206, 107, 102, 105, 105, 209, 207, 103, 202] +03 二月 2026 | 22:45:51,525 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:45:51,525 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:45:51,525 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:45:51,525 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 201, 107, 107, 105, 102, 103, 204, 202] +03 二月 2026 | 22:45:52,580 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[108, 104, 205, 207, 109, 206, 107, 102, 105, 105, 209, 207, 103, 106] +03 二月 2026 | 22:45:52,580 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:45:52,580 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:45:52,580 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:45:52,581 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[109, 202, 201, 107, 107, 105, 203, 102, 103, 204, 202] +03 二月 2026 | 22:45:53,001 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:46:33,424 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:46:33,481 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:46:37,806 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:46:37,807 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:46:40,804 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:46:40,922 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:46:41,691 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:46:41,691 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:46:41,691 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:882005 +03 二月 2026 | 22:46:41,778 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:46:41,778 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:46:41,778 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:290547 +03 二月 2026 | 22:46:42,068 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:46:42,130 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 22:46:43,902 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:882005 +03 二月 2026 | 22:46:43,947 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:290547 +03 二月 2026 | 22:46:43,947 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:46:43,980 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:46:44,199 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:46:44,293 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:46:44,333 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:46:44,334 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:46:44,334 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:46:44,438 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:46:44,438 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:46:44,438 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:46:44,700 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:46:44,788 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:46:44,820 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:46:44,865 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:46:44,865 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:46:44,865 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:46:44,865 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:46:44,922 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:46:44,971 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:46:44,971 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2013000 +03 二月 2026 | 22:46:44,971 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:46:44,971 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:46:45,042 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:46:45,120 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:46:45,286 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@351f742f +03 二月 2026 | 22:46:45,388 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6791687f +03 二月 2026 | 22:46:46,057 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:46:46,057 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:46:46,057 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:46:46,104 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:46:46,147 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:46:46,250 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:46:46,250 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:46:46,250 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:46:46,283 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:46:46,313 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:46:46,322 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:46:46,508 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:47:03,786 | ERROR | Thread-34 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 22:47:03,836 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 22:47:09,880 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:47:10,019 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:47:12,626 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:882005 +03 二月 2026 | 22:47:12,667 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 22:47:12,877 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 22:47:13,027 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:47:13,065 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:47:13,794 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:47:14,575 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:47:14,575 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:47:14,575 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:559193 +03 二月 2026 | 22:47:14,919 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:47:16,579 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:559193 +03 二月 2026 | 22:47:16,613 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:47:16,874 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:47:17,075 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:47:17,236 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:47:20,127 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:47:30,233 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:47:30,655 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:47:40,344 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:47:40,774 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:47:43,523 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:559193 +03 二月 2026 | 22:47:43,562 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:47:43,754 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:47:43,862 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:47:43,862 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:47:43,862 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:47:44,227 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:47:44,342 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:47:44,381 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:47:44,382 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:47:44,382 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:47:44,382 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:47:44,566 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:47:44,786 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@351f742f +03 二月 2026 | 22:47:45,552 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:47:45,553 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:47:45,553 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:47:45,595 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:47:45,639 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:47:45,794 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:47:46,576 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:47:47,353 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:47:47,353 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:47:47,353 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:605348 +03 二月 2026 | 22:47:47,723 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:47:49,537 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:605348 +03 二月 2026 | 22:47:49,587 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:47:49,794 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:47:49,924 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:47:49,924 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:47:49,924 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:47:50,268 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:47:50,371 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:47:50,413 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:47:50,413 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:47:50,413 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:47:50,413 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:47:50,473 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:47:50,578 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:47:50,792 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@351f742f +03 二月 2026 | 22:47:51,427 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:47:51,427 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:47:51,427 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:47:51,464 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:47:51,498 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:47:51,651 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:47:58,727 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:47:58,790 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:48:02,761 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:48:02,761 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:48:02,761 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:290547 +03 二月 2026 | 22:48:02,814 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:48:02,926 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:48:02,926 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:48:02,927 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:605348 +03 二月 2026 | 22:48:03,368 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 22:48:03,597 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:48:05,586 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:290547 +03 二月 2026 | 22:48:05,624 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [132788,112233]] +03 二月 2026 | 22:48:05,710 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:605348 +03 二月 2026 | 22:48:05,761 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 22:48:05,818 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [132788,112233]] +03 二月 2026 | 22:48:06,000 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:48:06,004 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 22:48:06,054 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:48:06,125 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:48:06,171 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:48:06,498 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=290547, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 22:48:06,687 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=605348, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 22:48:08,987 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[208] +03 二月 2026 | 22:48:08,987 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:48:08,987 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:48:08,987 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:48:08,987 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:48:09,688 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:48:19,506 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:48:19,690 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:48:29,674 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:48:29,836 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:48:32,649 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:559193 +03 二月 2026 | 22:48:32,695 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:48:32,898 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:48:33,020 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:48:33,020 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:48:33,020 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:48:33,515 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:48:33,665 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:48:33,721 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:48:33,721 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:48:33,721 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:48:33,721 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:48:33,895 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:48:34,129 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@610c9d04 +03 二月 2026 | 22:48:35,001 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:48:35,001 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:48:35,001 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:48:35,039 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:48:35,090 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:48:35,253 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:48:35,990 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:48:36,993 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:48:36,994 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:48:36,994 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:399415 +03 二月 2026 | 22:48:37,396 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:48:39,203 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:399415 +03 二月 2026 | 22:48:39,246 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:48:39,437 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:48:39,555 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:48:39,555 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:48:39,555 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:48:39,838 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:48:40,025 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:48:40,168 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:48:40,207 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:48:40,217 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:48:40,217 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:48:40,217 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:48:40,374 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:48:40,651 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@610c9d04 +03 二月 2026 | 22:48:41,451 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:48:41,451 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:48:41,451 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:48:41,498 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:48:41,545 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:48:41,712 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:48:43,521 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 22:48:54,997 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:48:55,058 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:48:59,181 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:48:59,190 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:48:59,190 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:48:59,191 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:290547 +03 二月 2026 | 22:48:59,624 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 22:49:02,006 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:290547 +03 二月 2026 | 22:49:02,043 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [132788,112233]] +03 二月 2026 | 22:49:02,220 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:559193 +03 二月 2026 | 22:49:02,254 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:49:02,300 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [132788,112233]] +03 二月 2026 | 22:49:02,404 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:49:02,404 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:49:02,441 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:49:02,513 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:49:02,514 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:49:02,514 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:49:02,778 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=290547, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 22:49:03,010 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:49:03,106 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:49:03,138 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:49:03,140 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:49:03,140 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:49:03,140 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:49:03,292 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:49:03,500 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65f41e9f +03 二月 2026 | 22:49:04,182 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:49:04,182 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:49:04,182 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:49:04,224 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:49:04,262 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:49:04,441 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:49:05,125 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:49:05,785 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:49:06,046 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:49:06,046 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:49:06,046 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:281687 +03 二月 2026 | 22:49:06,448 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:49:06,909 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[206, 108, 104, 103, 202, 205, 204, 102, 104, 109, 105, 104, 102, 208] +03 二月 2026 | 22:49:06,909 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:49:06,909 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:49:06,909 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:49:06,909 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 22:49:08,179 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:281687 +03 二月 2026 | 22:49:08,212 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:49:08,506 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:49:08,615 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:49:08,615 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:49:08,615 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:49:08,924 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:49:09,025 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:49:09,046 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207] +03 二月 2026 | 22:49:09,046 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 22:49:09,047 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 22:49:09,047 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 22:49:09,047 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[108, 102, 107] +03 二月 2026 | 22:49:09,060 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:49:09,061 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:49:09,061 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:49:09,061 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:49:09,221 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:49:09,425 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65f41e9f +03 二月 2026 | 22:49:10,077 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:49:10,078 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:49:10,078 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:49:10,121 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:49:10,153 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:49:10,291 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:49:15,785 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:49:25,888 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:49:33,741 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:49:35,994 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:49:36,451 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:281687 +03 二月 2026 | 22:49:36,488 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 22:49:36,678 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 22:49:36,794 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:49:36,795 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:49:36,795 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:49:37,223 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:49:37,362 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:49:37,393 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:49:37,394 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:49:37,394 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:49:37,394 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:49:37,550 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:49:37,761 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65f41e9f +03 二月 2026 | 22:49:38,540 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:49:38,541 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:49:38,541 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:49:38,581 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:49:38,673 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:49:38,844 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:49:39,677 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:49:40,416 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:49:40,416 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:49:40,416 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:641883 +03 二月 2026 | 22:49:40,791 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:49:42,329 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:641883 +03 二月 2026 | 22:49:42,364 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:49:42,584 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:49:42,737 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:49:42,787 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:49:43,561 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 22:49:56,132 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:49:56,216 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:50:03,545 | ERROR | Thread-34 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 22:50:06,340 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:50:09,546 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:641883 +03 二月 2026 | 22:50:09,580 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:50:09,932 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:50:10,038 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:50:10,038 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:50:10,038 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:50:10,401 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:50:10,591 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:50:10,628 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:50:10,628 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:50:10,628 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:50:10,628 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:50:10,815 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:50:11,065 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65f41e9f +03 二月 2026 | 22:50:11,700 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:50:11,700 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:50:11,700 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:50:11,737 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:50:11,772 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:50:11,922 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:50:12,640 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:50:13,441 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:50:13,441 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:50:13,441 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:725625 +03 二月 2026 | 22:50:13,821 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:50:15,555 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:725625 +03 二月 2026 | 22:50:15,591 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:50:15,775 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:50:15,884 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:50:15,885 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:50:15,885 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:50:16,224 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:50:16,336 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:50:16,375 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:50:16,375 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:50:16,375 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:50:16,375 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:50:16,443 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:50:16,531 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:50:16,747 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65f41e9f +03 二月 2026 | 22:50:17,432 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:50:17,432 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:50:17,432 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:50:17,466 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:50:17,507 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:50:17,658 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:50:20,232 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:725625 +03 二月 2026 | 22:50:20,271 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 22:50:20,476 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 22:50:20,573 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:50:20,573 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:50:20,573 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:50:20,885 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:50:20,982 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:50:21,016 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:50:21,016 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2012000 +03 二月 2026 | 22:50:21,016 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:50:21,016 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:50:21,221 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:50:21,511 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@52de2c1e +03 二月 2026 | 22:50:22,200 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:50:22,200 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:50:22,200 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:50:22,271 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:50:22,315 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:50:22,467 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:50:23,236 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:50:24,090 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:50:24,090 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:50:24,091 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:458822 +03 二月 2026 | 22:50:24,465 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 22:50:26,209 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:458822 +03 二月 2026 | 22:50:26,260 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:50:26,442 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:50:26,546 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:50:26,546 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:50:26,546 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:50:26,873 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:50:26,974 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:50:27,007 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:50:27,007 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2012000 +03 二月 2026 | 22:50:27,007 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:50:27,007 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:50:27,159 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:50:27,366 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@52de2c1e +03 二月 2026 | 22:50:28,080 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:50:28,080 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:50:28,080 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:50:28,138 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:50:28,176 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:50:28,350 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:50:31,169 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:50:41,277 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:50:41,628 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:50:41,628 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:50:41,628 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:458822 +03 二月 2026 | 22:50:41,670 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:50:42,076 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:50:43,703 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:458822 +03 二月 2026 | 22:50:43,738 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 22:50:43,958 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 22:50:44,074 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 22:50:44,108 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:50:44,397 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=458822, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 22:50:51,804 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:50:54,809 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:725625 +03 二月 2026 | 22:50:54,842 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 22:50:55,048 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 22:50:55,151 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:50:55,151 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:50:55,151 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:50:55,461 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:50:55,558 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:50:55,594 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:50:55,594 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2012000 +03 二月 2026 | 22:50:55,595 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:50:55,595 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:50:55,774 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:50:56,068 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@52de2c1e +03 二月 2026 | 22:50:56,694 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:50:56,694 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:50:56,694 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:50:56,730 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:50:56,772 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:50:56,959 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:50:57,434 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:50:57,820 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:50:58,563 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:50:58,564 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:50:58,564 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:981075 +03 二月 2026 | 22:50:58,905 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 22:51:00,544 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:981075 +03 二月 2026 | 22:51:00,578 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:51:00,800 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:51:00,899 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:51:00,899 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:51:00,899 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:51:01,211 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:51:01,308 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:51:01,341 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:51:01,341 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2012000 +03 二月 2026 | 22:51:01,341 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:51:01,341 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:51:01,487 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:51:01,690 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@52de2c1e +03 二月 2026 | 22:51:02,365 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:51:02,366 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:51:02,366 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:51:02,422 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:51:02,464 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:51:02,612 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:51:07,549 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:51:10,460 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:981075 +03 二月 2026 | 22:51:10,570 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 22:51:10,775 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [132788]] +03 二月 2026 | 22:51:10,866 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:51:10,866 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:51:10,867 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:51:11,202 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:51:11,298 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:51:11,336 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:51:11,336 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:51:11,336 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:51:11,336 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:51:11,541 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:51:11,798 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65f41e9f +03 二月 2026 | 22:51:12,421 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:51:12,421 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:51:12,421 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:51:12,512 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:51:12,548 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:51:12,683 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:51:13,404 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 22:51:14,165 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:51:14,165 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:51:14,165 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:217330 +03 二月 2026 | 22:51:14,504 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:51:15,929 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 22:51:15,937 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:217330 +03 二月 2026 | 22:51:15,976 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:51:16,183 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 22:51:16,297 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:51:16,298 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:51:16,298 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:51:16,641 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:51:16,743 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:51:16,777 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:51:16,777 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:51:16,777 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:51:16,777 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:51:16,930 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:51:17,166 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@65f41e9f +03 二月 2026 | 22:51:17,788 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:51:17,788 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:51:17,788 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:51:17,984 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:51:18,024 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:51:18,284 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:59:46,891 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 22:59:46,950 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 22:59:51,079 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 22:59:51,398 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:59:51,398 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:59:51,398 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:669981 +03 二月 2026 | 22:59:51,721 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 22:59:51,721 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 22:59:51,721 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:669981 +03 二月 2026 | 22:59:51,903 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 22:59:52,041 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 22:59:54,317 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:669981 +03 二月 2026 | 22:59:54,348 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 22:59:54,388 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:669981 +03 二月 2026 | 22:59:54,422 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 22:59:54,533 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 22:59:54,568 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 22:59:54,655 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:59:54,655 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:59:54,655 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:59:54,691 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 22:59:54,691 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 22:59:54,691 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 22:59:55,214 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:59:55,233 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 22:59:55,353 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:59:55,353 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 22:59:55,384 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:59:55,384 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2012000 +03 二月 2026 | 22:59:55,384 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:59:55,384 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:59:55,390 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 22:59:55,390 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 22:59:55,390 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 22:59:55,391 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 22:59:55,557 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:59:55,557 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 22:59:55,821 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@1da8e2cd +03 二月 2026 | 22:59:55,821 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@51fcbeb4 +03 二月 2026 | 22:59:56,565 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:59:56,565 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:59:56,565 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:59:56,565 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 22:59:56,565 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 22:59:56,565 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 22:59:56,600 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:59:56,600 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 22:59:56,643 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:59:56,643 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 22:59:56,785 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:59:56,806 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 22:59:57,060 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=669981, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 22:59:57,082 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=669981, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:00:10,125 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:00:20,199 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:00:20,199 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:00:23,734 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:00:30,268 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:02:22,731 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:02:22,779 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:02:26,802 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:02:26,997 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:02:26,997 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:02:26,997 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:669981 +03 二月 2026 | 23:02:27,451 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:02:29,432 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:669981 +03 二月 2026 | 23:02:29,467 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:02:29,624 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:02:29,727 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:02:29,740 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:02:29,761 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:02:30,088 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=669981, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 23:02:30,628 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:02:30,628 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:02:30,628 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:140877 +03 二月 2026 | 23:02:30,952 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:02:32,599 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:140877 +03 二月 2026 | 23:02:32,641 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:02:32,833 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:02:33,000 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:02:33,000 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:02:33,000 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:02:33,091 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:02:33,376 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:02:33,525 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:02:33,566 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:02:33,566 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:02:33,566 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:02:33,566 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:02:33,725 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:02:33,949 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b0e825e +03 二月 2026 | 23:02:34,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | cardInhand:[207, 101, 206, 106, 204, 209, 105, 109, 107, 205, 204, 201, 108, 104] +03 二月 2026 | 23:02:34,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 23:02:34,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 23:02:34,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 23:02:34,232 | INFO | NetEvent-Thread | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 23:02:34,639 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:02:34,639 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:02:34,639 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:02:34,676 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:02:34,719 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:02:34,882 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:02:38,281 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 23:02:38,397 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 23:02:38,580 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 23:02:43,091 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:02:53,207 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:02:58,372 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:03:00,655 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:03:01,401 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:03:01,401 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:03:01,401 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:672523 +03 二月 2026 | 23:03:01,723 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:03:03,355 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:03:03,382 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:672523 +03 二月 2026 | 23:03:03,423 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:03:03,600 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:03:03,704 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:03:03,704 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:03:03,705 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:03:04,034 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:03:04,139 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:03:04,179 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:03:04,179 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:03:04,179 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:03:04,179 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:03:04,342 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:03:04,552 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b0e825e +03 二月 2026 | 23:03:05,274 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:03:05,274 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:03:05,274 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:03:05,310 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:03:05,364 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:03:05,512 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:03:13,532 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:03:13,603 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:03:21,495 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:672523 +03 二月 2026 | 23:03:21,527 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:03:21,710 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:03:21,851 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:03:21,851 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:03:21,852 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:03:22,281 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:03:22,394 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:03:22,429 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:03:22,429 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:03:22,429 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:03:22,429 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:03:22,616 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:03:22,826 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b0e825e +03 二月 2026 | 23:03:23,496 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:03:23,496 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:03:23,496 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:03:23,538 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:03:23,603 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:03:23,757 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:03:23,841 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:03:24,543 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:03:25,435 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:03:25,435 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:03:25,435 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:504358 +03 二月 2026 | 23:03:25,771 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:03:27,327 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:03:27,360 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:03:27,527 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:03:27,650 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:03:27,650 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:03:27,650 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:03:27,996 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:03:28,104 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:03:28,145 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:03:28,146 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:03:28,146 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:03:28,146 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:03:28,280 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:03:28,514 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b0e825e +03 二月 2026 | 23:03:29,258 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:03:29,258 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:03:29,258 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:03:29,306 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:03:29,348 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:03:29,580 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:03:43,876 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:03:53,024 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:03:53,990 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:03:56,208 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:03:56,258 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:03:56,463 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:03:56,595 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:03:56,595 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:03:56,595 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:03:56,942 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:03:57,074 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:03:57,123 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:03:57,123 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:03:57,123 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:03:57,123 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:03:57,263 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:03:57,531 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b0e825e +03 二月 2026 | 23:03:58,211 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:03:58,211 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:03:58,211 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:03:58,248 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:03:58,284 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:03:58,452 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:03:59,201 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:03:59,946 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:03:59,946 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:03:59,946 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:777686 +03 二月 2026 | 23:04:00,295 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:04:02,074 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:777686 +03 二月 2026 | 23:04:02,111 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:04:02,314 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:04:02,454 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:04:02,501 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:04:03,551 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:04:03,571 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:04:14,434 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:04:15,989 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:04:19,240 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:04:19,293 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:04:19,532 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:04:19,657 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:04:19,710 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:04:20,367 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:04:21,051 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:04:21,051 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:04:21,051 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:204475 +03 二月 2026 | 23:04:21,512 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:04:23,131 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:204475 +03 二月 2026 | 23:04:23,164 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:04:23,336 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:04:23,439 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:04:23,472 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:04:34,598 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:04:37,028 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:04:44,813 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:04:47,160 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:04:50,678 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:04:50,718 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:04:50,941 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:04:51,058 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:04:51,058 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:04:51,058 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:04:51,464 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:04:51,611 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:04:51,659 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:04:51,659 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:04:51,659 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:04:51,659 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:04:51,805 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:04:52,039 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b0e825e +03 二月 2026 | 23:04:52,780 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:04:52,780 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:04:52,780 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:04:52,815 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:04:52,850 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:04:53,059 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:04:53,564 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:04:53,636 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:04:53,749 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:04:54,671 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:04:54,671 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:04:54,671 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:954226 +03 二月 2026 | 23:04:54,999 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:04:56,579 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:954226 +03 二月 2026 | 23:04:56,616 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:04:56,810 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:04:56,988 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:04:57,061 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:05:05,196 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:05:10,384 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:05:14,187 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:05:14,230 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:05:14,475 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:05:14,631 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:05:14,670 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:05:15,344 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:05:16,184 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:05:16,184 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:05:16,184 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:130458 +03 二月 2026 | 23:05:16,584 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:05:18,279 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:130458 +03 二月 2026 | 23:05:18,318 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:05:18,512 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:05:18,628 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:05:18,668 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:05:25,348 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:05:32,019 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:05:35,465 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:05:42,143 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:05:45,595 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:05:46,545 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:05:46,588 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:05:46,793 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:05:46,897 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:05:46,897 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:05:46,897 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:05:47,240 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:05:47,368 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:05:47,408 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:05:47,408 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:05:47,408 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:05:47,408 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:05:47,550 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:05:47,838 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b0e825e +03 二月 2026 | 23:05:48,610 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:05:48,610 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:05:48,610 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:05:48,647 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:05:48,739 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:05:49,047 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:05:49,771 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:05:50,582 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:05:50,582 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:05:50,582 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:853938 +03 二月 2026 | 23:05:51,048 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:05:52,787 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:853938 +03 二月 2026 | 23:05:52,854 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:05:53,075 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:05:53,246 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:05:53,282 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:05:53,638 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:05:53,737 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:06:05,996 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:06:06,709 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:06:11,029 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:06:11,066 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:06:11,270 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:06:11,373 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:06:11,407 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:06:12,078 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:06:12,803 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:06:12,803 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:06:12,803 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:577798 +03 二月 2026 | 23:06:13,151 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:06:15,039 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:577798 +03 二月 2026 | 23:06:15,073 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:06:15,260 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:06:15,370 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:06:15,403 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:06:26,169 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:06:28,758 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:06:36,279 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:06:38,895 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:06:43,483 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:06:43,526 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:06:43,723 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:06:43,850 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:06:43,850 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:06:43,850 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:06:44,200 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:06:44,317 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:06:44,359 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:06:44,359 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:06:44,359 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:06:44,359 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:06:44,519 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:06:44,739 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b0e825e +03 二月 2026 | 23:06:45,509 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:06:45,519 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:06:45,519 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:06:45,552 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:06:45,586 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:06:45,734 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:06:46,389 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:06:46,456 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:06:47,326 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:06:47,326 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:06:47,326 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:775423 +03 二月 2026 | 23:06:47,789 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:06:49,603 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:775423 +03 二月 2026 | 23:06:49,656 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:06:49,862 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:06:49,989 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:06:50,034 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:06:53,599 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:06:53,655 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:07:06,822 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:07:08,734 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:07:08,773 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:07:08,979 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:07:09,092 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:07:09,131 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:07:09,869 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:07:10,688 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:07:10,688 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:07:10,688 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:567679 +03 二月 2026 | 23:07:11,061 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:07:12,768 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:567679 +03 二月 2026 | 23:07:12,813 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:07:13,076 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:07:13,252 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:07:13,296 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:07:26,966 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:07:36,839 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:07:37,104 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:07:41,897 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:07:41,932 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:07:42,119 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:07:42,285 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:07:42,285 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:07:42,285 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:07:42,598 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:07:42,719 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:07:42,776 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:07:42,776 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:07:42,776 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:07:42,776 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:07:42,953 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:07:43,192 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4b0e825e +03 二月 2026 | 23:07:43,612 | ERROR | Thread-56 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:07:43,712 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:07:44,014 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:07:44,014 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:07:44,014 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:07:44,045 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:07:44,076 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:07:44,221 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:07:45,128 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:07:45,889 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:07:45,889 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:07:45,889 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:168843 +03 二月 2026 | 23:07:46,236 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:07:47,989 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:168843 +03 二月 2026 | 23:07:48,025 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:07:48,269 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:07:48,417 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:07:48,454 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:07:57,377 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:08:01,826 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:08:07,447 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:08:07,481 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:08:07,676 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:08:07,838 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:08:07,882 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:08:08,578 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:08:09,354 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:08:09,354 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:08:09,354 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:686436 +03 二月 2026 | 23:08:09,684 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:08:11,338 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:686436 +03 二月 2026 | 23:08:11,373 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:08:11,588 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:08:11,707 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:08:11,752 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:08:13,621 | ERROR | Thread-61 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:08:13,665 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:08:27,836 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:08:30,640 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:08:30,675 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:08:30,868 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:08:30,978 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:08:31,015 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:08:31,601 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:08:32,478 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:08:32,478 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:08:32,478 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:403544 +03 二月 2026 | 23:08:32,999 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:08:34,589 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:403544 +03 二月 2026 | 23:08:34,632 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:08:34,897 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:08:35,029 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:08:35,063 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:08:50,175 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:08:50,234 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:08:54,395 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:08:54,395 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:08:54,395 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:669981 +03 二月 2026 | 23:08:54,456 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:08:54,535 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:08:54,536 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:08:54,536 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:504358 +03 二月 2026 | 23:08:54,878 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:08:55,021 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:08:57,146 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:669981 +03 二月 2026 | 23:08:57,181 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:08:57,293 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:08:57,328 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:08:57,395 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:08:57,466 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:08:57,498 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:08:57,532 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:08:57,581 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:08:57,622 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:08:57,874 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=669981, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 23:08:57,945 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=504358, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:09:00,947 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:10:18,678 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:10:18,736 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:10:23,039 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:10:23,039 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:10:23,039 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:504358 +03 二月 2026 | 23:10:23,150 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:10:23,151 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:10:23,151 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:669981 +03 二月 2026 | 23:10:23,161 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:10:23,262 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:10:23,564 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:10:23,641 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:10:25,777 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:10:25,858 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:10:26,006 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:669981 +03 二月 2026 | 23:10:26,041 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:10:26,180 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:10:26,212 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:10:26,308 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:10:26,320 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:10:26,349 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:10:26,357 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:10:26,696 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=669981, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 23:10:26,719 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=504358, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:10:39,700 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:10:39,721 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:10:43,722 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:10:43,741 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:11:29,924 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:11:29,980 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:11:35,139 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:11:35,139 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:11:35,139 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:669981 +03 二月 2026 | 23:11:35,581 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:11:37,785 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:669981 +03 二月 2026 | 23:11:37,825 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:11:38,019 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:11:38,132 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:11:38,169 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:11:38,599 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=669981, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 23:11:40,870 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:11:40,902 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:11:41,102 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:11:41,204 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:11:41,205 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:11:41,205 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:11:41,646 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:11:41,778 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:11:41,812 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:11:41,812 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4659000 +03 二月 2026 | 23:11:41,812 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:11:41,812 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:11:41,990 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:11:42,288 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@a33290a +03 二月 2026 | 23:11:43,007 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:11:43,007 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:11:43,007 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:11:43,048 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:11:43,083 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:11:43,288 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:11:43,980 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:11:44,931 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:11:44,931 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:11:44,931 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:342010 +03 二月 2026 | 23:11:45,267 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:11:47,105 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:342010 +03 二月 2026 | 23:11:47,149 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:11:47,328 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:11:47,383 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:11:47,421 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:11:47,454 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:11:47,487 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:11:47,576 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:11:47,712 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:11:47,748 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:11:48,553 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:11:49,434 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:11:49,434 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:11:49,434 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:646176 +03 二月 2026 | 23:11:49,924 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:11:51,858 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:646176 +03 二月 2026 | 23:11:51,910 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:11:52,096 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:11:52,223 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:11:52,264 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:11:53,685 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:11:53,699 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:12:00,839 | INFO | 168417 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:12:00,839 | INFO | 168417 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:12:00,839 | INFO | 168417 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:12:00,839 | INFO | 168417 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:12:03,694 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:12:05,627 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:12:05,627 | INFO | 132788 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:12:05,627 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:12:06,668 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:12:06,704 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:12:06,886 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:12:07,015 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:12:07,047 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:12:07,857 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:12:08,692 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:12:08,693 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:12:08,693 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:258632 +03 二月 2026 | 23:12:09,011 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:12:10,864 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:258632 +03 二月 2026 | 23:12:10,910 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:12:11,122 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:12:11,267 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:12:11,298 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:12:11,987 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:12:12,027 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:12:12,199 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:12:12,311 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:12:12,391 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:12:13,086 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:12:13,802 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:12:13,802 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:12:13,802 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:688558 +03 二月 2026 | 23:12:14,207 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:12:16,002 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:688558 +03 二月 2026 | 23:12:16,040 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:12:16,256 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:12:16,460 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:12:16,495 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:12:29,898 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:12:34,781 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:12:40,004 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:12:41,245 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:12:41,280 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:12:41,489 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:12:41,621 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:12:41,657 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:12:42,361 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:12:43,231 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:12:43,231 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:12:43,231 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:324180 +03 二月 2026 | 23:12:43,599 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:12:45,237 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:324180 +03 二月 2026 | 23:12:45,269 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:12:45,451 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:12:45,576 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:12:45,616 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:12:46,747 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:12:46,797 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:12:46,967 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:12:47,092 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:12:47,125 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:12:47,860 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:12:48,700 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:12:48,700 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:12:48,701 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:432726 +03 二月 2026 | 23:12:49,064 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:12:50,754 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:432726 +03 二月 2026 | 23:12:50,795 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:12:51,007 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:12:51,124 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:12:51,162 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:12:58,977 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:13:04,549 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:13:09,087 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:13:14,661 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:13:16,018 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:954226 +03 二月 2026 | 23:13:16,050 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:13:16,267 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:13:16,369 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:13:16,404 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:13:17,130 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:13:17,932 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:13:17,932 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:13:17,932 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:519153 +03 二月 2026 | 23:13:18,247 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:13:19,952 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:519153 +03 二月 2026 | 23:13:19,989 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:13:20,217 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:13:20,342 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:13:20,387 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:13:21,792 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:954226 +03 二月 2026 | 23:13:21,830 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:13:22,086 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:13:22,210 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:13:22,246 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:13:22,991 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:13:23,774 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:13:23,774 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:13:23,775 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:841419 +03 二月 2026 | 23:13:24,161 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:13:25,983 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:841419 +03 二月 2026 | 23:13:26,020 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:13:26,269 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:13:26,395 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:13:26,429 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:13:35,775 | INFO | 168417 | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 206, 103, 103, 206, 103, 209, 109, 104, 205, 108, 105, 201, 201] +03 二月 2026 | 23:13:35,775 | INFO | 168417 | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 23:13:35,775 | INFO | 168417 | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 23:13:35,775 | INFO | 168417 | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 23:13:35,775 | INFO | 168417 | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 23:13:35,790 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:13:39,807 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:13:45,982 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:13:49,217 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:13:49,280 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:13:53,588 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:13:53,588 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:13:53,588 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:669981 +03 二月 2026 | 23:13:53,800 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:13:53,802 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:13:53,802 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:504358 +03 二月 2026 | 23:13:54,161 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:13:54,326 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:13:56,435 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:669981 +03 二月 2026 | 23:13:56,476 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:13:56,522 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:504358 +03 二月 2026 | 23:13:56,583 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [168417,112233]] +03 二月 2026 | 23:13:56,682 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [177475,132788]] +03 二月 2026 | 23:13:56,757 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 1, 0, svr8840, 10, 18, 670680, 2, 0, 1, [168417,112233]] +03 二月 2026 | 23:13:56,805 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:13:56,849 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:13:56,886 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:13:56,924 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:13:57,212 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=669981, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 23:13:57,297 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=504358, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=1} +03 二月 2026 | 23:14:07,853 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:954226 +03 二月 2026 | 23:14:07,894 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:08,157 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:954226 +03 二月 2026 | 23:14:08,190 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:08,190 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:08,318 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:14:08,373 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:14:08,373 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:08,531 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:14:08,569 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:14:09,379 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:14:09,482 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:14:10,259 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:14:10,259 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:14:10,259 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:470919 +03 二月 2026 | 23:14:10,380 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:14:10,381 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:14:10,381 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:482038 +03 二月 2026 | 23:14:10,629 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:14:10,731 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:14:12,253 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:470919 +03 二月 2026 | 23:14:12,286 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:12,456 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:482038 +03 二月 2026 | 23:14:12,511 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:12,512 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:12,618 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:14:12,658 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:14:12,693 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:12,828 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:14:12,869 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:14:13,804 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:14:13,804 | ERROR | Thread-31 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:14:23,729 | ERROR | Thread-39 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:14:23,729 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:14:26,007 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:14:26,008 | INFO | 132788 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:14:26,008 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:14:26,008 | INFO | 132788 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:14:26,008 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:14:26,009 | INFO | 132788 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:14:26,009 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:14:26,010 | INFO | 132788 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:14:26,328 | INFO | 168417 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:14:33,836 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:954226 +03 二月 2026 | 23:14:33,870 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:34,087 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:34,219 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:14:34,269 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:14:34,538 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:954226 +03 二月 2026 | 23:14:34,576 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:34,834 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:34,956 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:14:35,039 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:14:35,039 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:14:35,676 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:14:35,771 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:14:35,771 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:14:35,771 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:709798 +03 二月 2026 | 23:14:36,106 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:14:36,452 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:14:36,452 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:14:36,452 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:970524 +03 二月 2026 | 23:14:36,806 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:14:37,823 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:709798 +03 二月 2026 | 23:14:37,861 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:38,065 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:38,188 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:14:38,227 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:14:38,501 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:970524 +03 二月 2026 | 23:14:38,537 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:38,729 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:14:38,842 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:14:38,875 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:14:52,259 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:14:53,611 | INFO | 132788 | taurus.util.ChangShaSuanFaTest | | cardInhand:[208, 206, 103, 103, 206, 103, 209, 109, 104, 205, 108, 105, 201, 201] +03 二月 2026 | 23:14:53,611 | INFO | 132788 | taurus.util.ChangShaSuanFaTest | | pengCard:[] +03 二月 2026 | 23:14:53,611 | INFO | 132788 | taurus.util.ChangShaSuanFaTest | | chowGroup:[] +03 二月 2026 | 23:14:53,611 | INFO | 132788 | taurus.util.ChangShaSuanFaTest | | gangdepai:[] +03 二月 2026 | 23:14:53,611 | INFO | 132788 | taurus.util.ChangShaSuanFaTest | | resultList:[] +03 二月 2026 | 23:15:02,396 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:15:03,751 | ERROR | 132788 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:15:10,652 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:970524 +03 二月 2026 | 23:15:10,699 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +03 二月 2026 | 23:15:10,776 | ERROR | 168417 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 23:15:12,140 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:970524 +03 二月 2026 | 23:15:12,173 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[null, null, null, null, null, null, null, null, null, null, null, null, null] +03 二月 2026 | 23:15:12,254 | ERROR | 132788 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 23:15:13,752 | ERROR | Thread-47 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:15:23,941 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:15:23,996 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:15:31,274 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:15:31,357 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:15:32,112 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:15:32,112 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:15:32,112 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:391120 +03 二月 2026 | 23:15:32,222 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:15:32,222 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:15:32,222 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:558478 +03 二月 2026 | 23:15:32,467 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:15:32,569 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:15:34,783 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:15:34,875 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:35,008 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:558478 +03 二月 2026 | 23:15:35,076 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:35,229 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:35,295 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:35,399 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:15:35,400 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:15:35,400 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:15:35,432 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:15:35,433 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:15:35,434 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:15:35,901 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:15:35,901 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:15:36,024 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:15:36,024 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:15:36,059 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:15:36,059 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:15:36,059 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:15:36,059 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:15:36,077 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:15:36,077 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:15:36,077 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:15:36,077 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:15:36,230 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:15:36,236 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:15:36,490 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@22a3426c +03 二月 2026 | 23:15:36,490 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@664def58 +03 二月 2026 | 23:15:37,216 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:15:37,216 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:15:37,216 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:15:37,216 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:15:37,216 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:15:37,217 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:15:37,253 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:15:37,253 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:15:37,299 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:15:37,299 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:15:37,505 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:15:37,505 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:15:53,643 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:558478 +03 二月 2026 | 23:15:53,689 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:558478 +03 二月 2026 | 23:15:53,689 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:53,722 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:53,762 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:15:53,762 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:15:53,931 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:53,931 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:54,047 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:15:54,047 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:15:54,047 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:15:54,047 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:15:54,048 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:15:54,048 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:15:54,463 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:15:54,463 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:15:54,621 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:15:54,622 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:15:54,654 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:15:54,654 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:15:54,654 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:15:54,654 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:15:54,660 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:15:54,660 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:15:54,660 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:15:54,660 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:15:54,864 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:15:54,864 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:15:55,125 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@22a3426c +03 二月 2026 | 23:15:55,125 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@664def58 +03 二月 2026 | 23:15:55,876 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:15:55,876 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:15:55,876 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:15:55,879 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:15:55,879 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:15:55,879 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:15:55,913 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:15:55,913 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:15:55,951 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:15:55,951 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:15:56,126 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:15:56,126 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:15:56,858 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:15:56,858 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:15:57,609 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:15:57,610 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:15:57,610 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:113968 +03 二月 2026 | 23:15:57,652 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:15:57,652 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:15:57,652 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:494040 +03 二月 2026 | 23:15:57,932 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:15:57,969 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:15:59,521 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:113968 +03 二月 2026 | 23:15:59,563 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:59,590 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:494040 +03 二月 2026 | 23:15:59,627 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:59,805 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:15:59,839 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:16:00,038 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:00,038 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:00,038 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:00,075 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:00,075 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:00,075 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:00,385 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:00,385 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:00,524 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:00,524 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:00,561 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:00,561 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:16:00,561 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:00,562 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:00,562 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:00,562 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:16:00,562 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:00,562 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:00,722 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:00,722 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:00,969 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@22a3426c +03 二月 2026 | 23:16:00,969 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@664def58 +03 二月 2026 | 23:16:01,715 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:01,716 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:01,716 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:01,715 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:01,716 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:01,716 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:01,797 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:01,797 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:01,832 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:01,832 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:01,983 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:01,983 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:13,774 | ERROR | Thread-43 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:16:13,774 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:16:15,402 | INFO | 168417 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:16:15,402 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:16:15,403 | INFO | 168417 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:16:15,403 | INFO | 132788 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:16:15,403 | INFO | 132788 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:16:15,403 | INFO | 168417 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:16:15,404 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:16:15,404 | INFO | 168417 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:16:15,674 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:16:15,674 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:16:15,674 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:391120 +03 二月 2026 | 23:16:15,674 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:16:15,674 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:16:15,674 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:391120 +03 二月 2026 | 23:16:16,234 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:16:16,288 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:16:18,057 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:16:18,098 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:16:18,098 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:18,135 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:18,292 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:18,306 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:18,404 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:18,404 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:18,405 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:18,413 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:18,414 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:18,414 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:18,746 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:18,820 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:18,876 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:18,917 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:18,917 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:18,917 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:16:18,917 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:18,917 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:18,951 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:18,951 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:16:18,951 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:18,951 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:19,054 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:19,112 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:19,301 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@664def58 +03 二月 2026 | 23:16:19,384 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@22a3426c +03 二月 2026 | 23:16:19,992 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:19,992 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:19,992 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:20,025 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:20,047 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:20,048 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:20,048 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:20,069 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:20,081 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:20,114 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:20,215 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:20,249 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:20,513 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=391120, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:16:20,571 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=391120, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:16:27,146 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:16:27,180 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:27,314 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:16:27,352 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:27,417 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:27,510 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:27,519 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:27,519 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:27,519 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:27,623 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:27,623 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:27,623 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:27,932 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:27,998 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:28,033 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:28,093 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:28,093 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:16:28,093 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:28,093 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:28,106 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:28,141 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:28,141 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:16:28,141 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:28,141 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:28,270 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:28,305 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:28,510 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@664def58 +03 二月 2026 | 23:16:28,510 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@22a3426c +03 二月 2026 | 23:16:29,191 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:29,191 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:29,191 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:29,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:29,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:29,191 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:29,224 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:29,232 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:29,260 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:29,282 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:29,433 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:29,433 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:30,100 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:16:30,162 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:16:30,941 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:16:30,942 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:16:30,942 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:871570 +03 二月 2026 | 23:16:30,942 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:16:30,942 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:16:30,942 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:623304 +03 二月 2026 | 23:16:31,272 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:16:31,280 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:16:33,016 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:623304 +03 二月 2026 | 23:16:33,018 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:871570 +03 二月 2026 | 23:16:33,055 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:16:33,057 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:16:33,253 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:16:33,325 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:16:33,448 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:33,448 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:33,448 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:33,479 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:33,479 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:33,479 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:33,519 | ERROR | Thread-52 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:16:33,519 | ERROR | Thread-51 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:16:33,832 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:33,832 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:33,969 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:33,969 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:34,002 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:34,002 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:16:34,002 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:34,002 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:34,002 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:16:34,003 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:34,003 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:34,003 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:34,147 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:34,165 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:34,386 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@664def58 +03 二月 2026 | 23:16:34,386 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@22a3426c +03 二月 2026 | 23:16:35,126 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:35,126 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:35,126 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:35,131 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:35,131 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:35,131 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:35,198 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:35,198 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:35,238 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:35,238 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:35,404 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:35,406 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:39,509 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:16:39,566 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:16:44,123 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:16:44,123 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:16:44,123 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:494040 +03 二月 2026 | 23:16:44,305 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:16:44,305 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:16:44,305 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:494040 +03 二月 2026 | 23:16:44,588 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:16:44,807 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:16:46,769 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:494040 +03 二月 2026 | 23:16:46,804 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:16:46,841 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:494040 +03 二月 2026 | 23:16:46,875 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:16:47,035 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:16:47,069 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:16:47,149 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:47,149 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:47,149 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:47,186 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:47,186 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:47,187 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:47,625 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:47,672 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:47,778 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:47,814 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:47,815 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:47,815 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:16:47,816 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:47,816 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:47,853 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:47,854 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:16:47,854 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:47,854 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:47,998 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:48,035 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:48,220 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f1db9f4 +03 二月 2026 | 23:16:48,266 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4a69c784 +03 二月 2026 | 23:16:48,960 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:48,960 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:48,960 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:48,991 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:48,991 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:48,991 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:48,995 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:49,024 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:49,031 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:49,066 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:49,272 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:49,272 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:49,588 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=494040, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:16:49,592 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=494040, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:16:57,034 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:494040 +03 二月 2026 | 23:16:57,102 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:16:57,102 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:16:57,136 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:57,324 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:16:57,383 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:16:57,510 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:57,510 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:57,510 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:57,562 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:16:57,562 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:16:57,563 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:16:57,932 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:57,936 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:16:58,043 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:58,055 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:16:58,079 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:58,080 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:16:58,080 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:58,080 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:58,093 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:16:58,093 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:16:58,093 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:16:58,093 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:16:58,275 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:58,361 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:16:58,651 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f1db9f4 +03 二月 2026 | 23:16:58,669 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4a69c784 +03 二月 2026 | 23:16:59,469 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:59,469 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:59,469 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:59,500 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:59,509 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:16:59,509 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:16:59,509 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:16:59,544 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:16:59,544 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:59,631 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:16:59,754 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:16:59,812 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:17:00,531 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:17:00,567 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:17:01,356 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:17:01,356 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:17:01,356 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:379859 +03 二月 2026 | 23:17:01,442 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:17:01,443 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:17:01,443 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:235859 +03 二月 2026 | 23:17:01,737 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:17:01,899 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:17:03,523 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:379859 +03 二月 2026 | 23:17:03,538 | ERROR | Thread-34 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:17:03,538 | ERROR | Thread-35 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:17:03,553 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:17:03,564 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:235859 +03 二月 2026 | 23:17:03,602 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:17:03,871 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:17:03,951 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:17:04,057 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:17:04,057 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:17:04,057 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:17:04,078 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:17:04,078 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:17:04,078 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:17:04,414 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:17:04,419 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:17:04,522 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:17:04,529 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:17:04,556 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:17:04,556 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:17:04,556 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:17:04,556 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:17:04,559 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:17:04,559 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:17:04,559 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:17:04,559 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:17:04,699 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:17:04,706 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:17:04,940 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f1db9f4 +03 二月 2026 | 23:17:04,979 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4a69c784 +03 二月 2026 | 23:17:05,696 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:17:05,696 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:17:05,696 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:17:05,696 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:17:05,697 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:17:05,697 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:17:05,728 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:17:05,729 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:17:05,775 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:17:05,775 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:17:05,952 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:17:05,952 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:17:19,285 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:17:19,286 | INFO | 132788 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:17:19,286 | INFO | 132788 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:17:19,286 | INFO | 132788 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:17:19,337 | INFO | 168417 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:17:19,619 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:17:19,619 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:17:19,619 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:494040 +03 二月 2026 | 23:17:19,678 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:17:19,679 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:17:19,679 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:494040 +03 二月 2026 | 23:17:20,010 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:17:20,013 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:17:21,937 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:494040 +03 二月 2026 | 23:17:21,974 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:17:21,974 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:494040 +03 二月 2026 | 23:17:22,010 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:17:22,172 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:17:22,208 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [112233]] +03 二月 2026 | 23:17:22,305 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:17:22,305 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:17:22,305 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:17:22,315 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:17:22,316 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:17:22,316 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:17:22,741 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:17:22,747 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:17:22,855 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:17:22,859 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:17:22,907 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:17:22,907 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:17:22,907 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:17:22,907 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:17:22,918 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:17:22,918 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2011000 +03 二月 2026 | 23:17:22,918 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:17:22,918 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:17:23,112 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:17:23,112 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:17:23,352 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f1db9f4 +03 二月 2026 | 23:17:23,352 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4a69c784 +03 二月 2026 | 23:17:24,013 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:17:24,013 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:17:24,013 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:17:24,065 | INFO | 132788 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:17:24,103 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:17:24,103 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:17:24,103 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:17:24,104 | INFO | 132788 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:17:24,137 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:17:24,171 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:17:24,266 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:17:24,325 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:17:24,659 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=494040, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:17:24,693 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=494040, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:17:37,731 | ERROR | 168417 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:17:43,541 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:17:47,845 | INFO | 168417 | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:17:48,174 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:17:48,174 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:17:48,174 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:391120 +03 二月 2026 | 23:17:48,223 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:17:48,224 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:17:48,224 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:391120 +03 二月 2026 | 23:17:48,541 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:17:48,584 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:17:50,369 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:17:50,396 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:17:50,421 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:17:50,433 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:17:50,625 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:17:50,641 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:17:50,737 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:17:50,737 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:17:50,737 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:17:50,745 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:17:50,783 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:17:51,084 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=391120, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:17:51,095 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:17:51,221 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:17:51,267 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:17:51,267 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:17:51,267 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:17:51,267 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:17:51,430 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:17:51,692 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f1db9f4 +03 二月 2026 | 23:17:52,512 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:17:52,512 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:17:52,512 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:17:52,546 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:17:52,588 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:17:52,749 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:17:53,059 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=391120, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:17:58,474 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:17:58,509 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:17:58,688 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:17:58,803 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:17:58,834 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:17:59,534 | INFO | 132788 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:18:00,316 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:18:00,317 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:18:00,317 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:230628 +03 二月 2026 | 23:18:00,705 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:18:00,705 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:18:00,747 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:18:00,953 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:18:01,115 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:18:01,115 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:18:01,115 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:18:01,516 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:18:01,640 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:18:01,688 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:18:01,688 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:18:01,688 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:18:01,688 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:18:01,860 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:18:02,127 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f1db9f4 +03 二月 2026 | 23:18:02,517 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:230628 +03 二月 2026 | 23:18:02,559 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:18:02,772 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:18:02,917 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:18:02,983 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:18:02,983 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:18:02,983 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:18:02,983 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:18:03,021 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:18:03,061 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:18:03,220 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:18:04,056 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:18:04,881 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:18:04,881 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:18:04,881 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:567224 +03 二月 2026 | 23:18:05,285 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:18:07,239 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:567224 +03 二月 2026 | 23:18:07,282 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:18:07,485 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:18:07,602 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:18:07,602 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:18:07,602 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:18:08,101 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:18:08,216 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:18:08,248 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:18:08,248 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:18:08,248 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:18:08,248 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:18:08,403 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:18:08,664 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f1db9f4 +03 二月 2026 | 23:18:09,516 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:18:09,516 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:18:09,516 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:18:09,574 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:18:09,605 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:18:09,774 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:18:16,787 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:18:16,787 | ERROR | 132788 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:18:16,787 | ERROR | 132788 | client.business.GroupRoomBusiness | | room_keyroom:391120 +03 二月 2026 | 23:18:17,158 | ERROR | 132788 | client.business.GroupRoomBusiness | | 玩家进入房间:132788 +03 二月 2026 | 23:18:19,000 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:18:19,037 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:18:19,239 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:18:19,348 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:18:19,386 | INFO | 132788 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:18:19,701 | INFO | 132788 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=391120, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:18:23,179 | INFO | 168417 | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:18:23,579 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:18:23,579 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:18:23,579 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:391120 +03 二月 2026 | 23:18:23,917 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:18:25,579 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:18:25,611 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:18:25,793 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:18:25,912 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:18:25,912 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:18:25,912 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:18:26,293 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:18:26,410 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:18:26,443 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:18:26,443 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:18:26,443 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:18:26,443 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:18:26,612 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:18:26,981 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4f1db9f4 +03 二月 2026 | 23:18:27,260 | INFO | 132788 | client.business.GroupRoomBusiness | | finalRoom:room:391120 +03 二月 2026 | 23:18:27,292 | INFO | 132788 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:18:27,490 | INFO | 132788 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [177475]] +03 二月 2026 | 23:18:27,612 | INFO | 132788 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:18:27,612 | INFO | 132788 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:18:27,612 | INFO | 132788 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:18:27,753 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:18:27,753 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:18:27,753 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:18:27,797 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:18:27,830 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:18:27,975 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:18:27,987 | INFO | 132788 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:18:28,103 | INFO | 132788 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:18:28,148 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:18:28,148 | INFO | 132788 | client.business.GroupRoomBusiness | | uid_hp:2010000 +03 二月 2026 | 23:18:28,148 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:18:28,148 | INFO | 132788 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:18:28,314 | INFO | 168417 | taurus.robot.RobotUser | | 房间数据数据时数据1213234453543545------{room_id=391120, groupId=670680, pid=18, hp_times=30000, server_ip=47.109.55.7, ban_chat2=false, server_port=6311, hpOnOff=1, ban_chat1=false, game_info={gameType=1, name=长沙麻将, hpType=1, isNonnegative=1, bundle=extend.majiang.changsha, version=1.0.7, game_id=10}, lev=3, status=0} +03 二月 2026 | 23:18:28,352 | INFO | 132788 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:18:28,563 | ERROR | 132788 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@4a69c784 +03 二月 2026 | 23:18:29,307 | ERROR | 132788 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:18:29,307 | ERROR | 132788 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:18:29,307 | ERROR | 132788 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:30:50,258 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:30:50,317 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:30:58,449 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:379859 +03 二月 2026 | 23:30:58,487 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:30:58,669 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:30:58,780 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:30:58,780 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:30:58,781 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:30:59,221 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:30:59,331 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:30:59,367 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:30:59,367 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:30:59,367 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:30:59,367 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:30:59,522 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:30:59,812 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@25c54f14 +03 二月 2026 | 23:31:00,592 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:31:00,592 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:31:00,593 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:31:00,630 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:31:00,667 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:31:00,813 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:31:01,580 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:31:02,499 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:31:02,499 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:31:02,499 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:342087 +03 二月 2026 | 23:31:02,896 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:31:04,606 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:342087 +03 二月 2026 | 23:31:04,649 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:31:04,848 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:31:04,968 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:31:04,968 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:31:04,968 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:31:05,365 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:31:05,471 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:31:05,539 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:31:05,539 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:31:05,539 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:31:05,539 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:31:05,729 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:31:05,964 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@25c54f14 +03 二月 2026 | 23:31:06,739 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:31:06,739 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:31:06,739 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:31:06,773 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:31:06,813 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:31:06,953 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:33:51,196 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:33:51,251 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:33:55,178 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:33:58,584 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:379859 +03 二月 2026 | 23:33:58,629 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:33:58,834 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:33:58,948 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:33:58,948 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:33:58,948 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:33:59,509 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:33:59,628 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:33:59,669 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:33:59,669 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:33:59,669 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:33:59,669 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:33:59,872 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:34:00,116 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@22946cd8 +03 二月 2026 | 23:34:00,822 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:34:00,822 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:34:00,822 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:34:00,857 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:34:00,896 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:34:01,064 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:34:01,919 | INFO | 168417 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:34:02,895 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:34:02,895 | ERROR | 168417 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:34:02,895 | ERROR | 168417 | client.business.GroupRoomBusiness | | room_keyroom:613959 +03 二月 2026 | 23:34:03,254 | ERROR | 168417 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:34:05,056 | INFO | 168417 | client.business.GroupRoomBusiness | | finalRoom:room:613959 +03 二月 2026 | 23:34:05,100 | INFO | 168417 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:34:05,300 | INFO | 168417 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:34:05,429 | INFO | 168417 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:34:05,429 | INFO | 168417 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:34:05,429 | INFO | 168417 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:34:05,806 | INFO | 168417 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:34:05,919 | INFO | 168417 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:34:05,956 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:34:05,956 | INFO | 168417 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:34:05,956 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:34:05,956 | INFO | 168417 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:34:06,129 | INFO | 168417 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:34:06,389 | ERROR | 168417 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@22946cd8 +03 二月 2026 | 23:34:07,251 | ERROR | 168417 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:34:07,251 | ERROR | 168417 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:34:07,251 | ERROR | 168417 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:34:07,285 | INFO | 168417 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:34:07,336 | INFO | 168417 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:34:07,491 | INFO | 168417 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:34:10,955 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 23:34:11,076 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 23:34:11,292 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 23:41:12,554 | INFO | main | core.plugin.PluginService | | plugin[database] load success! +03 二月 2026 | 23:41:12,607 | INFO | main | core.plugin.PluginService | | plugin[redis] load success! +03 二月 2026 | 23:41:16,733 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:41:20,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:379859 +03 二月 2026 | 23:41:20,113 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:41:20,299 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:41:20,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:41:20,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:41:20,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:41:20,955 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:41:21,089 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:41:21,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:41:21,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:41:21,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:41:21,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:41:21,371 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:41:21,629 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:41:22,417 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:41:22,417 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:41:22,417 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:41:22,450 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:41:22,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:41:22,621 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:41:23,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:41:24,270 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:41:24,270 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:41:24,270 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:851952 +03 二月 2026 | 23:41:24,686 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:41:26,479 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:851952 +03 二月 2026 | 23:41:26,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:41:26,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:41:26,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:41:26,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:41:26,852 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:41:27,204 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:41:27,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:41:27,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:41:27,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:41:27,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:41:27,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:41:27,514 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:41:27,759 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:41:28,504 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:41:28,504 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:41:28,505 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:41:28,552 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:41:28,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:41:28,773 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:41:32,153 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:41:32,154 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:41:32,218 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 斤斤计较急急急急急急急急急====={start=0, aid=168417} +03 二月 2026 | 23:41:32,339 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 连接的id---------------:168417 +03 二月 2026 | 23:41:32,536 | INFO | NetEvent-Thread | taurus.robot.RobotUser | | 获取数据的key----------------g{0}:play:0 +03 二月 2026 | 23:41:32,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:41:37,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:41:42,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:41:47,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:41:50,964 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:379859 +03 二月 2026 | 23:41:51,004 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:41:51,192 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:41:51,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:41:51,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:41:51,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:41:51,626 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:41:51,744 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:41:51,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:41:51,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:41:51,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:41:51,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:41:51,977 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:41:52,227 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:41:53,107 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:41:53,107 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:41:53,107 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:41:53,164 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:41:53,207 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:41:53,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:41:54,058 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:41:54,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:41:54,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:41:54,775 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:891518 +03 二月 2026 | 23:41:55,119 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:41:56,784 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:891518 +03 二月 2026 | 23:41:56,825 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:41:57,007 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:41:57,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:41:57,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:41:57,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:41:57,459 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:41:57,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:41:57,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:41:57,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:41:57,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:41:57,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:41:57,781 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:41:58,021 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:41:58,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:41:58,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:41:58,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:41:58,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:41:58,830 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:41:58,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:42:02,333 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:42:02,333 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:42:02,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:42:03,724 | ERROR | Thread-32 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:42:03,764 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:42:13,009 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:42:21,239 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:891518 +03 二月 2026 | 23:42:21,297 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:42:21,548 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:42:21,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:42:21,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:42:21,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:42:22,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:42:22,332 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:42:22,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:42:22,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:42:22,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:42:22,372 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:42:22,534 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:42:22,762 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:42:23,491 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:42:23,492 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:42:23,492 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:42:23,533 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:42:23,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:42:23,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:42:24,392 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:42:25,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:42:25,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:42:25,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:538970 +03 二月 2026 | 23:42:25,632 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:42:27,374 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:538970 +03 二月 2026 | 23:42:27,413 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:42:27,654 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:42:27,760 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:42:27,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:42:27,761 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:42:28,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:42:28,259 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:42:28,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:42:28,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:42:28,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:42:28,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:42:28,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:42:28,649 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:42:29,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:42:29,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:42:29,364 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:42:29,404 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:42:29,447 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:42:29,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:42:32,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:42:32,950 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:42:32,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:42:33,748 | ERROR | Thread-36 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:42:33,823 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:42:43,072 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:42:51,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:891518 +03 二月 2026 | 23:42:51,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:42:51,637 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:42:51,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:42:51,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:42:51,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:42:52,078 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:42:52,208 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:42:52,282 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:42:52,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:42:52,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:42:52,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:42:52,429 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:42:52,681 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:42:53,378 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:42:53,378 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:42:53,378 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:42:53,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:42:53,442 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:42:53,620 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:42:54,425 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:42:55,134 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:42:55,134 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:42:55,134 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:168147 +03 二月 2026 | 23:42:55,479 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:42:57,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:168147 +03 二月 2026 | 23:42:57,173 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:42:57,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:42:57,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:42:57,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:42:57,505 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:42:57,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:42:57,956 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:42:57,989 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:42:57,989 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:42:57,989 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:42:57,989 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:42:58,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:42:58,419 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:42:59,213 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:42:59,213 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:42:59,213 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:42:59,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:42:59,287 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:42:59,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:43:02,829 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:43:02,829 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:43:02,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:43:03,743 | ERROR | Thread-40 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:43:03,776 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:43:13,027 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:43:21,672 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:891518 +03 二月 2026 | 23:43:21,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:43:21,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:43:22,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:43:22,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:43:22,034 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:43:22,397 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:43:22,510 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:43:22,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:43:22,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:43:22,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:43:22,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:43:22,682 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:43:22,910 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:43:23,653 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:43:23,653 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:43:23,653 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:43:23,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:43:23,823 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:43:23,966 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:43:24,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:43:25,494 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:43:25,494 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:43:25,494 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:939048 +03 二月 2026 | 23:43:25,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:43:27,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:939048 +03 二月 2026 | 23:43:27,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:43:27,782 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:43:27,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:43:27,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:43:27,884 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:43:28,280 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:43:28,442 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:43:28,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:43:28,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:43:28,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:43:28,475 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:43:28,636 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:43:28,914 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:43:29,591 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:43:29,591 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:43:29,591 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:43:29,624 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:43:29,659 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:43:29,798 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:43:33,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:43:33,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:43:33,147 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:43:33,754 | ERROR | Thread-44 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:43:33,828 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:43:43,070 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:43:52,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:43:57,592 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:816553 +03 二月 2026 | 23:43:57,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:43:57,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:43:57,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:43:57,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:43:58,610 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:43:59,305 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:43:59,305 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:43:59,306 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:398917 +03 二月 2026 | 23:43:59,649 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:44:01,353 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:398917 +03 二月 2026 | 23:44:01,387 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:44:01,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:44:01,676 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:44:01,711 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:44:03,764 | ERROR | Thread-49 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:44:03,774 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:44:09,629 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:816553 +03 二月 2026 | 23:44:09,677 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:44:09,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:44:10,019 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:44:10,056 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:44:10,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:44:11,489 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:44:11,489 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:44:11,489 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:213390 +03 二月 2026 | 23:44:11,823 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:44:13,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:213390 +03 二月 2026 | 23:44:13,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:44:13,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:44:14,135 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:44:14,176 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:44:17,548 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:44:22,735 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:816553 +03 二月 2026 | 23:44:22,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:44:22,948 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:44:23,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:44:23,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:44:23,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:44:23,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:44:23,530 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:44:23,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:44:23,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:44:23,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:44:23,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:44:23,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:44:23,938 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:44:24,889 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:44:24,889 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:44:24,889 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:44:24,923 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:44:24,956 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:44:25,113 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:44:25,948 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:44:26,702 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:44:26,702 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:44:26,702 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:960051 +03 二月 2026 | 23:44:27,071 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:44:28,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:960051 +03 二月 2026 | 23:44:28,776 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:44:28,983 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:44:29,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:44:29,147 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:44:32,514 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:44:32,514 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:44:32,514 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:44:32,515 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:44:32,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:44:37,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:44:42,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:44:47,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:44:53,772 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:816553 +03 二月 2026 | 23:44:53,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:44:54,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:44:54,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:44:54,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:44:54,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:44:55,789 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:44:55,789 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:44:55,789 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:403763 +03 二月 2026 | 23:44:56,205 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:44:57,893 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:403763 +03 二月 2026 | 23:44:57,930 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:44:58,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:44:58,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:44:58,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:44:58,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:44:58,577 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:44:58,712 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:44:58,754 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:44:58,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:44:58,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:44:58,755 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:44:58,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:44:59,147 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:44:59,875 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:44:59,875 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:44:59,875 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:44:59,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:44:59,949 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:45:00,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:45:03,459 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:45:03,459 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:45:03,459 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:45:03,779 | ERROR | Thread-54 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:45:03,792 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:45:13,042 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:45:24,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:377834 +03 二月 2026 | 23:45:25,013 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:45:25,219 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:45:25,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:45:25,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:45:25,320 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:45:25,750 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:45:25,858 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:45:25,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:45:25,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:45:25,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:45:25,890 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:45:26,022 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:45:26,252 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:45:26,956 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:45:26,962 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:45:26,962 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:45:26,995 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:45:27,028 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:45:27,175 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:45:27,933 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:45:28,692 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:45:28,692 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:45:28,692 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:380613 +03 二月 2026 | 23:45:29,035 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:45:30,669 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:380613 +03 二月 2026 | 23:45:30,705 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:45:30,889 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:45:31,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:45:31,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:45:31,055 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:45:31,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:45:31,562 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:45:31,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:45:31,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:45:31,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:45:31,595 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:45:31,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:45:31,993 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:45:32,705 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:45:32,705 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:45:32,705 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:45:32,747 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:45:32,818 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:45:32,957 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:45:33,540 | ERROR | Thread-59 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:45:33,550 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:45:44,546 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:377834 +03 二月 2026 | 23:45:44,582 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:45:44,803 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:45:44,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:45:44,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:45:44,912 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:45:45,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:45:45,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:45:45,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:45:45,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:45:45,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:45:45,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:45:45,563 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:45:45,820 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:45:46,614 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:45:46,615 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:45:46,615 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:45:46,646 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:45:46,683 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:45:46,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:45:47,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:45:48,263 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:45:48,263 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:45:48,263 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:995062 +03 二月 2026 | 23:45:48,586 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:45:50,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:995062 +03 二月 2026 | 23:45:50,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:45:50,607 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:45:50,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:45:50,756 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:45:54,144 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:46:02,384 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:377834 +03 二月 2026 | 23:46:02,486 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:46:02,664 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:46:02,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:46:02,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:46:02,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:46:03,118 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:46:03,233 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:46:03,267 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:46:03,267 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:46:03,267 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:46:03,267 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:46:03,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:46:03,705 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:46:04,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:46:04,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:46:04,396 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:46:04,433 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:46:04,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:46:04,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:46:05,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:46:06,159 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:46:06,161 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:46:06,161 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:491957 +03 二月 2026 | 23:46:06,550 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:46:08,289 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:491957 +03 二月 2026 | 23:46:08,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:46:08,535 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:46:08,702 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:46:08,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:46:08,703 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:46:09,098 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:46:09,208 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:46:09,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:46:09,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:46:09,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:46:09,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:46:09,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:46:09,645 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:46:10,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:46:10,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:46:10,369 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:46:10,403 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:46:10,452 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:46:10,605 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:46:13,552 | ERROR | Thread-64 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:46:13,644 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:46:14,046 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:46:23,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:816553 +03 二月 2026 | 23:46:23,587 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:46:23,762 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:46:23,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:46:23,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:46:23,947 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:46:24,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:46:24,445 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:46:24,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:46:24,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:46:24,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:46:24,480 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:46:24,629 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:46:24,891 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:46:25,640 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:46:25,640 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:46:25,640 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:46:25,687 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:46:25,720 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:46:25,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:46:26,815 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:46:27,550 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:46:27,550 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:46:27,550 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:328662 +03 二月 2026 | 23:46:27,891 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:46:29,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:328662 +03 二月 2026 | 23:46:29,592 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:46:29,790 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:46:29,894 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:46:29,936 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:46:33,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,313 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,314 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,314 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:46:33,558 | ERROR | Thread-68 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:46:33,634 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:46:43,089 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:46:52,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:47:03,590 | ERROR | Thread-73 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:47:03,686 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:47:04,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:407262 +03 二月 2026 | 23:47:04,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:47:04,679 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:47:04,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:47:04,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:47:04,827 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:47:05,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:47:05,282 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:47:05,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:47:05,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:47:05,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:47:05,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:47:05,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:47:05,720 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:47:06,490 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:47:06,490 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:47:06,490 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:47:06,525 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:47:06,556 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:47:06,730 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:47:07,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:47:08,163 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:47:08,163 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:47:08,163 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:844028 +03 二月 2026 | 23:47:08,567 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:47:10,292 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:844028 +03 二月 2026 | 23:47:10,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:47:10,516 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:47:10,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:47:10,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:47:10,618 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:47:10,968 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:47:11,072 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:47:11,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:47:11,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:47:11,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:47:11,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:47:11,263 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:47:11,476 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:47:12,227 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:47:12,227 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:47:12,227 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:47:12,263 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:47:12,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:47:12,492 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:47:30,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:547119 +03 二月 2026 | 23:47:30,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:47:30,435 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:47:30,540 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:47:30,540 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:47:30,540 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:47:30,856 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:47:30,972 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:47:31,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:47:31,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:47:31,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:47:31,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:47:31,182 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:47:31,416 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:47:32,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:47:32,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:47:32,170 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:47:32,202 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:47:32,238 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:47:32,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:47:33,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:47:33,838 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:47:33,838 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:47:33,838 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:686835 +03 二月 2026 | 23:47:34,231 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:47:36,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:686835 +03 二月 2026 | 23:47:36,145 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:47:36,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:47:36,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:47:36,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:47:40,083 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:47:52,662 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:407262 +03 二月 2026 | 23:47:52,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:47:52,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:47:53,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:47:53,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:47:53,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:47:53,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:47:53,517 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:47:53,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:47:53,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:47:53,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:47:53,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:47:53,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:47:53,980 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:47:54,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:47:54,684 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:47:54,684 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:47:54,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:47:54,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:47:54,891 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:47:55,580 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:47:56,302 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:47:56,302 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:47:56,302 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:276505 +03 二月 2026 | 23:47:56,703 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:47:58,374 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:276505 +03 二月 2026 | 23:47:58,411 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:47:58,608 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:47:58,736 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:47:58,736 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:47:58,736 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:47:59,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:47:59,180 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:47:59,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:47:59,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:47:59,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:47:59,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:47:59,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:47:59,603 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:48:00,356 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:48:00,356 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:48:00,356 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:48:00,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:48:00,420 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:48:00,582 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:48:03,584 | ERROR | Thread-77 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:48:03,603 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:48:04,005 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:48:17,629 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:599498 +03 二月 2026 | 23:48:17,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:48:18,003 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:48:18,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:48:18,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:48:18,910 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:48:19,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:48:19,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:48:19,668 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:244128 +03 二月 2026 | 23:48:20,022 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:48:21,683 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:244128 +03 二月 2026 | 23:48:21,717 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:48:21,913 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:48:22,024 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:48:22,065 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:48:23,586 | ERROR | Thread-81 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:48:23,612 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:48:25,521 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:48:38,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:749412 +03 二月 2026 | 23:48:39,023 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:48:39,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:48:39,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:48:39,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:48:39,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:48:39,633 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:48:39,738 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:48:39,900 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:48:39,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:48:39,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:48:39,901 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:48:40,046 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:48:40,321 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:48:41,011 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:48:41,012 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:48:41,012 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:48:41,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:48:41,081 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:48:41,237 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:48:41,931 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:48:42,641 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:48:42,641 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:48:42,641 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:586406 +03 二月 2026 | 23:48:42,972 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:48:43,596 | ERROR | Thread-85 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:48:43,613 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:48:44,687 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:586406 +03 二月 2026 | 23:48:44,719 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:48:44,885 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:48:44,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:48:44,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:48:44,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:48:45,344 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:48:45,446 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:48:45,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:48:45,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:48:45,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:48:45,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:48:45,612 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:48:45,844 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:48:46,504 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:48:46,504 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:48:46,504 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:48:46,539 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:48:46,570 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:48:46,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:48:50,143 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:49:07,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:749412 +03 二月 2026 | 23:49:07,321 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:49:07,531 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:49:07,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:49:07,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:49:07,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:49:07,959 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:49:08,070 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:49:08,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:49:08,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:49:08,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:49:08,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:49:08,252 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:49:08,493 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:49:09,163 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:49:09,163 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:49:09,163 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:49:09,203 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:49:09,234 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:49:09,376 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:49:10,039 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:49:10,860 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:49:10,860 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:49:10,860 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:785782 +03 二月 2026 | 23:49:11,224 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:49:12,785 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:785782 +03 二月 2026 | 23:49:12,826 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:49:13,019 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:49:13,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:49:13,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:49:13,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:49:13,584 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:49:13,601 | ERROR | Thread-89 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:49:13,665 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:49:13,693 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:49:13,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:49:13,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:49:13,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:49:13,728 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:49:13,867 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:49:14,088 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:49:14,831 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:49:14,831 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:49:14,831 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:49:14,869 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:49:14,902 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:49:15,059 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:49:18,491 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:49:37,472 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:981306 +03 二月 2026 | 23:49:37,513 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[null, null, null, 3, null, null, null, null, null, null, null, null, null] +03 二月 2026 | 23:49:37,663 | ERROR | pool-3-thread-1 | taurus.robot.RobotUser | | joinRoomOrCreateRoomnull +03 二月 2026 | 23:49:43,617 | ERROR | Thread-95 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:49:43,624 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:49:43,739 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:676430 +03 二月 2026 | 23:49:43,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:49:43,980 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:49:44,095 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:49:44,140 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:49:44,789 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:49:45,453 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:49:45,453 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:49:45,453 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:771316 +03 二月 2026 | 23:49:45,789 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:49:47,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:771316 +03 二月 2026 | 23:49:47,427 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:49:47,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:49:47,725 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:49:47,797 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:49:57,944 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:401045 +03 二月 2026 | 23:49:57,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:49:58,209 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:49:58,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:49:58,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:49:58,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:49:58,657 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:49:58,758 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:49:58,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:49:58,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:49:58,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:49:58,800 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:49:59,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:49:59,230 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:49:59,945 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:49:59,945 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:49:59,945 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:49:59,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:50:00,020 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:50:00,160 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:50:00,818 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:50:01,587 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:50:01,587 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:50:01,587 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:131581 +03 二月 2026 | 23:50:02,020 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:50:03,742 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:131581 +03 二月 2026 | 23:50:03,780 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:50:04,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:50:04,125 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:50:04,212 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:50:07,733 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:50:15,241 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:580279 +03 二月 2026 | 23:50:15,285 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:50:15,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:50:15,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:50:15,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:50:15,660 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:50:16,030 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:50:16,131 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:50:16,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:50:16,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:50:16,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:50:16,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:50:16,402 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:50:16,671 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:50:17,353 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:50:17,353 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:50:17,353 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:50:17,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:50:17,431 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:50:17,579 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:50:18,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:50:18,983 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:50:18,983 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:50:18,983 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:825421 +03 二月 2026 | 23:50:19,356 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:50:21,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:825421 +03 二月 2026 | 23:50:21,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:50:21,442 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:50:21,560 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:50:21,599 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,000 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,001 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,002 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:25,003 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:27,970 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:33,623 | ERROR | Thread-99 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:50:33,673 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:50:38,098 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:50:47,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:50:56,757 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:676430 +03 二月 2026 | 23:50:56,794 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:50:56,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:50:57,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:50:57,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:50:57,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:50:57,511 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:50:57,631 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:50:57,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:50:57,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:50:57,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:50:57,692 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:50:57,837 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:50:58,120 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:50:58,826 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:50:58,826 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:50:58,826 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:50:58,863 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:50:58,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:50:59,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:50:59,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:51:00,511 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:51:00,514 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:51:00,514 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:726850 +03 二月 2026 | 23:51:00,863 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:51:02,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:726850 +03 二月 2026 | 23:51:02,786 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:51:02,998 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:51:03,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:51:03,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:51:03,100 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:51:03,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:51:03,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:51:03,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:51:03,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:51:03,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:51:03,541 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:51:03,631 | ERROR | Thread-105 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:51:03,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:51:03,728 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:51:03,965 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:51:04,633 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:51:04,633 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:51:04,633 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:51:04,665 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:51:04,697 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:51:04,835 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:51:17,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:676430 +03 二月 2026 | 23:51:17,436 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:51:17,620 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:51:17,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:51:17,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:51:17,743 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:51:18,090 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:51:18,193 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:51:18,231 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:51:18,231 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:51:18,231 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:51:18,231 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:51:18,367 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:51:18,677 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:51:19,444 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:51:19,444 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:51:19,444 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:51:19,484 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:51:19,524 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:51:19,685 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:51:20,379 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:51:21,169 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:51:21,169 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:51:21,169 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:908096 +03 二月 2026 | 23:51:21,529 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:51:23,271 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:908096 +03 二月 2026 | 23:51:23,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:51:23,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:51:23,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:51:23,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:51:23,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:51:23,984 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:51:24,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:51:24,139 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:51:24,139 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:51:24,139 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:51:24,139 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:51:24,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:51:24,507 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:51:25,226 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:51:25,226 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:51:25,226 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:51:25,261 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:51:25,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:51:25,437 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:51:28,938 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:51:31,226 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:51:31,959 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:51:31,959 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:51:31,959 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:118951 +03 二月 2026 | 23:51:32,388 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:51:34,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:118951 +03 二月 2026 | 23:51:34,124 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:51:34,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:51:34,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:51:34,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:51:34,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:51:34,885 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:51:35,152 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:51:35,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:51:35,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:51:35,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:51:35,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:51:35,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:51:35,570 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:51:36,244 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:51:36,244 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:51:36,244 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:51:36,276 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:51:36,308 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:51:36,492 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:51:39,809 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:39,809 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:39,809 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:39,809 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:39,809 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:39,809 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:39,809 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:42,970 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:47,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:52,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:51:55,364 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:51:56,225 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:51:56,226 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:51:56,226 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:378635 +03 二月 2026 | 23:51:56,572 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:51:58,399 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:378635 +03 二月 2026 | 23:51:58,445 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:51:58,648 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:51:58,752 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:51:58,753 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:51:58,753 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:51:59,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:51:59,187 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:51:59,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:51:59,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:51:59,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:51:59,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:51:59,363 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:51:59,588 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:52:00,261 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:52:00,262 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:52:00,262 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:52:00,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:52:00,339 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:52:00,493 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:52:03,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:03,995 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:07,970 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:12,970 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:17,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:20,419 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:52:21,165 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:52:21,166 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:52:21,166 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:452991 +03 二月 2026 | 23:52:21,580 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:52:23,324 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:452991 +03 二月 2026 | 23:52:23,358 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:52:23,530 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:52:23,644 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:52:23,644 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:52:23,644 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:52:23,970 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:52:24,074 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:52:24,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:52:24,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:52:24,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:52:24,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:52:24,244 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:52:24,506 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:52:25,260 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:52:25,260 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:52:25,260 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:52:25,294 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:52:25,329 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:52:25,463 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:52:28,363 | ERROR | Thread-110 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:52:28,439 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:52:31,928 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:908851 +03 二月 2026 | 23:52:31,977 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:52:32,232 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:52:32,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:52:32,368 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:52:33,086 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:52:33,795 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:52:33,795 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:52:33,795 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:886419 +03 二月 2026 | 23:52:34,230 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:52:35,882 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:886419 +03 二月 2026 | 23:52:35,921 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:52:36,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:52:36,281 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:52:36,350 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:52:39,798 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:52:43,357 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:908851 +03 二月 2026 | 23:52:43,393 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:52:43,603 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, [168417]] +03 二月 2026 | 23:52:43,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:52:43,753 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:52:44,385 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:52:45,093 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:52:45,093 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:52:45,093 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:807989 +03 二月 2026 | 23:52:45,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:52:47,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:807989 +03 二月 2026 | 23:52:47,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:52:47,286 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:52:47,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:52:47,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:52:47,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:52:48,097 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:52:48,214 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:52:48,259 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:52:48,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:52:48,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:52:48,260 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:52:48,408 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:52:48,635 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:52:49,467 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:52:49,467 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:52:49,467 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:52:49,550 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:52:49,593 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:52:49,767 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:52:53,125 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:53,125 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:53,125 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:53,126 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:57,970 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:52:58,218 | ERROR | Thread-115 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:52:58,291 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:53:08,039 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:53:17,704 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:870359 +03 二月 2026 | 23:53:17,760 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:53:17,960 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:53:18,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:53:18,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:53:18,064 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:53:18,400 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:53:18,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:53:18,553 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:53:18,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:53:18,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:53:18,554 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:53:18,710 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:53:19,048 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:53:19,747 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:53:19,747 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:53:19,747 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:53:19,802 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:53:19,835 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:53:19,979 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:53:20,722 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:53:21,521 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:53:21,521 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:53:21,521 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:457482 +03 二月 2026 | 23:53:21,863 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:53:23,426 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:457482 +03 二月 2026 | 23:53:23,459 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:53:23,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:53:23,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:53:23,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:53:23,795 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:53:24,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:53:24,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:53:24,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:53:24,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:53:24,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:53:24,266 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:53:24,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:53:24,718 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:53:25,437 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:53:25,437 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:53:25,437 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:53:25,469 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:53:25,507 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:53:25,678 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:53:29,062 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:53:29,062 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:53:29,062 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:53:33,679 | ERROR | Thread-119 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:53:33,774 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:53:38,095 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:53:47,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:53:53,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:870359 +03 二月 2026 | 23:53:53,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:53:54,111 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:53:54,256 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:53:54,256 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:53:54,256 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:53:54,635 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:53:54,741 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:53:54,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:53:54,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:53:54,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:53:54,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:53:54,927 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:53:55,178 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:53:55,893 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:53:55,893 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:53:55,893 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:53:55,933 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:53:55,965 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:53:56,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:53:56,770 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:53:57,502 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:53:57,502 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:53:57,502 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:466502 +03 二月 2026 | 23:53:57,930 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:53:59,471 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:466502 +03 二月 2026 | 23:53:59,506 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:53:59,684 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:53:59,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:53:59,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:53:59,805 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:54:00,184 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:54:00,295 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:54:00,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:54:00,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:54:00,365 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:54:00,366 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:54:00,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:54:00,799 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:54:01,491 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:54:01,491 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:54:01,491 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:54:01,527 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:54:01,562 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:54:01,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:54:03,684 | ERROR | Thread-124 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:54:03,723 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:54:11,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:395184 +03 二月 2026 | 23:54:11,821 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:54:12,011 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:54:12,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:54:12,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:54:12,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:54:12,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:54:12,601 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:54:12,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:54:12,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:54:12,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:54:12,641 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:54:12,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:54:13,026 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:54:13,937 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:54:13,937 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:54:13,937 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:54:13,974 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:54:14,015 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:54:14,200 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:54:14,971 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:54:15,739 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:54:15,739 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:54:15,739 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:586351 +03 二月 2026 | 23:54:16,068 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:54:17,622 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:586351 +03 二月 2026 | 23:54:17,666 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:54:17,861 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:54:17,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:54:17,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:54:17,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:54:18,379 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:54:18,495 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:54:18,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:54:18,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:54:18,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:54:18,545 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:54:18,688 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:54:18,995 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:54:19,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:54:19,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:54:19,743 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:54:19,778 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:54:19,816 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:54:19,990 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:54:23,417 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:54:31,243 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:807989 +03 二月 2026 | 23:54:31,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:54:31,464 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:54:31,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:54:31,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:54:31,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:54:31,939 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:54:32,082 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:54:32,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:54:32,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:54:32,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:54:32,115 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:54:32,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:54:32,527 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:54:33,239 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:54:33,243 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:54:33,243 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:54:33,277 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:54:33,313 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:54:33,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:54:34,249 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:54:35,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:54:35,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:54:35,018 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:221507 +03 二月 2026 | 23:54:35,457 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:54:37,181 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:221507 +03 二月 2026 | 23:54:37,218 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:54:37,453 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:54:37,571 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:54:37,606 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:54:40,940 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:54:40,940 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:54:40,940 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:54:40,940 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:54:40,940 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:54:40,940 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:54:40,940 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:54:42,971 | ERROR | pool-3-thread-1 | client.io.ISocket | | Calling connect when the socket is not disconnected +03 二月 2026 | 23:54:43,704 | ERROR | Thread-129 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:54:43,714 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:54:53,063 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:55:06,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:417635 +03 二月 2026 | 23:55:06,908 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:55:07,104 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:55:07,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:55:07,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:55:07,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:55:07,581 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:55:07,690 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:55:07,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:55:07,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:55:07,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:55:07,723 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:55:07,886 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:55:08,117 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:55:08,799 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:55:08,799 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:55:08,799 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:55:08,832 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:55:08,870 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:55:09,012 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:55:09,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:55:10,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:55:10,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:55:10,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:724018 +03 二月 2026 | 23:55:10,808 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:55:12,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:724018 +03 二月 2026 | 23:55:12,543 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:55:12,718 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:55:12,833 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:55:12,877 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:55:13,705 | ERROR | Thread-133 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:55:13,777 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:55:25,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:544143 +03 二月 2026 | 23:55:25,532 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:55:25,721 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:55:25,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:55:25,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:55:25,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:55:26,197 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:55:26,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:55:26,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:55:26,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:55:26,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:55:26,361 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:55:26,509 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:55:26,749 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:55:27,427 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:55:27,427 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:55:27,427 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:55:27,459 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:55:27,490 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:55:27,639 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:55:28,316 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:55:29,028 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:55:29,028 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:55:29,028 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:671136 +03 二月 2026 | 23:55:29,432 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:55:30,989 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:671136 +03 二月 2026 | 23:55:31,021 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:55:31,191 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:55:31,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:55:31,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:55:31,303 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:55:31,653 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:55:31,787 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:55:31,841 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:55:31,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:55:31,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:55:31,842 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:55:32,026 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:55:32,250 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:55:33,009 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:55:33,009 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:55:33,009 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:55:33,043 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:55:33,077 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:55:33,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:55:36,594 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:55:47,157 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:870359 +03 二月 2026 | 23:55:47,194 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:55:47,380 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:55:47,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:55:47,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:55:47,515 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:55:47,961 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:55:48,087 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:55:48,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:55:48,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:55:48,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:55:48,122 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:55:48,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:55:48,570 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:55:49,317 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:55:49,317 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:55:49,317 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:55:49,438 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:55:49,477 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:55:49,658 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:55:50,421 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:55:51,194 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:55:51,194 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:55:51,194 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:940357 +03 二月 2026 | 23:55:51,546 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:55:53,328 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:940357 +03 二月 2026 | 23:55:53,362 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:55:53,589 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:55:53,716 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:55:53,716 | ERROR | Thread-137 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:55:53,751 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:55:53,781 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:55:57,199 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:56:09,073 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:690409 +03 二月 2026 | 23:56:09,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:56:09,278 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:56:09,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:56:09,409 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:56:09,410 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:56:09,768 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:56:09,916 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:56:09,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:56:09,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:56:09,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:56:09,958 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:56:10,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:56:10,386 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:56:11,264 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:56:11,264 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:56:11,264 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:56:11,300 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:56:11,334 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:56:11,536 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:56:12,190 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:56:12,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:56:12,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:56:12,974 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:974846 +03 二月 2026 | 23:56:13,342 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:56:13,722 | ERROR | Thread-141 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:56:13,782 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:56:14,981 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:974846 +03 二月 2026 | 23:56:15,016 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:56:15,222 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:56:15,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:56:15,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:56:15,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:56:15,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:56:15,836 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:56:15,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:56:15,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:56:15,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:56:15,876 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:56:16,047 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:56:16,344 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:56:17,082 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:56:17,082 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:56:17,082 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:56:17,127 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:56:17,170 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:56:17,309 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:56:20,721 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:56:35,341 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:807989 +03 二月 2026 | 23:56:35,388 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:56:35,593 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:56:35,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:56:35,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:56:35,715 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:56:36,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:56:36,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:56:36,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:56:36,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:56:36,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:56:36,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:56:36,442 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:56:36,683 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:56:37,400 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:56:37,400 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:56:37,400 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:56:37,462 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:56:37,503 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:56:37,707 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:56:38,811 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:56:39,737 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:56:39,737 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:56:39,737 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:538329 +03 二月 2026 | 23:56:40,255 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:56:42,051 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:538329 +03 二月 2026 | 23:56:42,094 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:56:42,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:56:42,432 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:56:42,522 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:56:43,731 | ERROR | Thread-145 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:56:43,747 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:56:46,059 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:56:59,671 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:318455 +03 二月 2026 | 23:56:59,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:56:59,942 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:57:00,071 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:57:00,110 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:57:00,822 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:57:01,562 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:57:01,562 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:57:01,562 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:661999 +03 二月 2026 | 23:57:01,917 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:57:03,699 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:661999 +03 二月 2026 | 23:57:03,734 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:57:03,761 | ERROR | Thread-149 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:57:03,862 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:57:03,922 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:57:04,108 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:57:04,144 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:57:07,679 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:57:23,216 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:870359 +03 二月 2026 | 23:57:23,259 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:57:23,440 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:57:23,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:57:23,567 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:57:23,567 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:57:23,745 | ERROR | Thread-153 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:57:23,760 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:57:23,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:57:24,069 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:57:24,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:57:24,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:57:24,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:57:24,107 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:57:24,254 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:57:24,500 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:57:25,270 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:57:25,270 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:57:25,270 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:57:25,305 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:57:25,342 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:57:25,512 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:57:26,369 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:57:27,110 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:57:27,110 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:57:27,110 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:523802 +03 二月 2026 | 23:57:27,539 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:57:29,406 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:523802 +03 二月 2026 | 23:57:29,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:57:29,643 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:57:29,766 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:57:29,812 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:57:33,313 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:57:49,992 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:857057 +03 二月 2026 | 23:57:50,044 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:57:50,227 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:57:50,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:57:50,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:57:50,352 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:57:50,709 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:57:50,840 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:57:50,872 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:57:50,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:57:50,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:57:50,873 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:57:51,033 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:57:51,278 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:57:52,125 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:57:52,125 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:57:52,125 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:57:52,159 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:57:52,265 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:57:52,405 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:57:53,121 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:57:53,751 | ERROR | Thread-158 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:57:53,817 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:57:53,859 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:57:53,859 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:57:53,859 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:225600 +03 二月 2026 | 23:57:54,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:57:55,942 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:225600 +03 二月 2026 | 23:57:55,985 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:57:56,166 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:57:56,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:57:56,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:57:56,306 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:57:56,749 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:57:56,883 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:57:56,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:57:56,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:57:56,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:57:56,917 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:57:57,120 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:57:57,517 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:57:58,251 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:57:58,251 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:57:58,252 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:57:58,283 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:57:58,317 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:57:58,456 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:58:01,961 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:58:17,698 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:690409 +03 二月 2026 | 23:58:17,733 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:58:17,907 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:58:18,105 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:58:18,138 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:58:18,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:58:19,658 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:58:19,658 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:58:19,658 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:703854 +03 二月 2026 | 23:58:19,987 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:58:21,859 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:703854 +03 二月 2026 | 23:58:21,905 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:58:22,090 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:58:22,236 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:58:22,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:58:23,760 | ERROR | Thread-162 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:58:23,767 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:58:25,778 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:58:43,457 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:602002 +03 二月 2026 | 23:58:43,497 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:58:43,713 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:58:43,767 | ERROR | Thread-167 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:58:43,772 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:58:43,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:58:43,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:58:43,843 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:58:44,224 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:58:44,358 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:58:44,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:58:44,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:58:44,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:58:44,390 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:58:44,566 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:58:44,808 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:58:45,552 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:58:45,552 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:58:45,552 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:58:45,590 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:58:45,623 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:58:45,769 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:58:46,613 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:58:47,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:58:47,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:58:47,401 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:719776 +03 二月 2026 | 23:58:47,794 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:58:49,478 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:719776 +03 二月 2026 | 23:58:49,537 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:58:49,724 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:58:49,851 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:58:49,888 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:58:53,311 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:59:12,038 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:442233 +03 二月 2026 | 23:59:12,075 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:59:12,248 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:59:12,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:59:12,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:59:12,383 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:59:12,745 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:59:12,865 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:59:12,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:59:12,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:59:12,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:59:12,898 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:59:13,066 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:59:13,442 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:59:13,774 | ERROR | Thread-171 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:59:13,820 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:59:14,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:59:14,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:59:14,257 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:59:14,323 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:59:14,358 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:59:14,500 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:59:15,231 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:59:15,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:59:15,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:59:15,953 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:309892 +03 二月 2026 | 23:59:16,311 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:59:18,080 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:309892 +03 二月 2026 | 23:59:18,114 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:59:18,304 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:59:18,417 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:true +03 二月 2026 | 23:59:18,455 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:59:21,864 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect +03 二月 2026 | 23:59:39,215 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:602002 +03 二月 2026 | 23:59:39,268 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:59:39,458 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, []] +03 二月 2026 | 23:59:39,574 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:59:39,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:59:39,575 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:59:39,966 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:59:40,106 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:59:40,141 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:59:40,141 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:59:40,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:59:40,142 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:59:40,290 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:59:40,531 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:59:41,260 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:59:41,260 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:59:41,260 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:59:41,296 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:59:41,331 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:59:41,483 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:59:42,225 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | strList:svr8840 +03 二月 2026 | 23:59:42,927 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间-begin +03 二月 2026 | 23:59:42,927 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | grooms_keyg{670680}:rooms +03 二月 2026 | 23:59:42,927 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_keyroom:373563 +03 二月 2026 | 23:59:43,261 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | 玩家进入房间:168417 +03 二月 2026 | 23:59:43,780 | ERROR | Thread-176 | client.io.ISocket | | Receiving failed.: +com.robotcm.taurus.client.io.TSocketException + at com.robotcm.taurus.client.io.SocketTcp.__read(SocketTcp.java:130) + at com.robotcm.taurus.client.io.SocketTcp.access$100(SocketTcp.java:19) + at com.robotcm.taurus.client.io.SocketTcp$2.run(SocketTcp.java:70) + at java.lang.Thread.run(Thread.java:750) +03 二月 2026 | 23:59:43,869 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : DisconnectByServer +03 二月 2026 | 23:59:44,881 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | finalRoom:room:373563 +03 二月 2026 | 23:59:44,911 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | room_list:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:59:45,102 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step1:[1, 30000, 1200000, 0, 1, svr8840, 10, 18, 670680, 2, 0, 1, null] +03 二月 2026 | 23:59:45,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step2:false +03 二月 2026 | 23:59:45,229 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step3:false +03 二月 2026 | 23:59:45,230 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step4:false +03 二月 2026 | 23:59:45,643 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step5:false +03 二月 2026 | 23:59:45,777 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6:false +03 二月 2026 | 23:59:45,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-1:false +03 二月 2026 | 23:59:45,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | uid_hp:4658000 +03 二月 2026 | 23:59:45,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-2:false +03 二月 2026 | 23:59:45,808 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step6-3:false +03 二月 2026 | 23:59:45,987 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | step7:false +03 二月 2026 | 23:59:46,210 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | gmb:com.data.bean.GroupMemberBean@6e96a014 +03 二月 2026 | 23:59:46,920 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | publicJoinRoom t_list:[423613] +03 二月 2026 | 23:59:46,920 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | p_reward_key:g{670680}:reward:18 +03 二月 2026 | 23:59:46,920 | ERROR | pool-3-thread-1 | client.business.GroupRoomBusiness | | par.toString():423613 +03 二月 2026 | 23:59:46,951 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | val:99.0 +03 二月 2026 | 23:59:46,988 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | list1.toJson():[{"p":423613,"r":99,"x":99}] +03 二月 2026 | 23:59:47,130 | INFO | pool-3-thread-1 | client.business.GroupRoomBusiness | | server_ip:[47.109.55.7, 6311, 47.109.55.7] +03 二月 2026 | 23:59:50,597 | INFO | NetEvent-Thread | client.io.SocketEngine | | status : Connect diff --git a/robots/robotchangma/target/ROOT.war b/robots/robotchangma/target/ROOT.war new file mode 100644 index 0000000..d063002 Binary files /dev/null and b/robots/robotchangma/target/ROOT.war differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/MainServer$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/MainServer$1.class new file mode 100644 index 0000000..b5fef09 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/MainServer$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/MainServer$2.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/MainServer$2.class new file mode 100644 index 0000000..cbf01b5 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/MainServer$2.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/MainServer.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/MainServer.class new file mode 100644 index 0000000..74c7cdd Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/MainServer.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/DoTest.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/DoTest.class new file mode 100644 index 0000000..ff33743 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/DoTest.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HandAnalysis.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HandAnalysis.class new file mode 100644 index 0000000..0b167de Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HandAnalysis.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanChangSha.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanChangSha.class new file mode 100644 index 0000000..74cf678 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanChangSha.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanFangPaoFa.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanFangPaoFa.class new file mode 100644 index 0000000..1f4de41 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanFangPaoFa.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanHongZhong.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanHongZhong.class new file mode 100644 index 0000000..5069c2c Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanHongZhong.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanPaoDeKuai.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanPaoDeKuai.class new file mode 100644 index 0000000..ff9f613 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanPaoDeKuai.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanZhuanZhuan.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanZhuanZhuan.class new file mode 100644 index 0000000..555de3b Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/HuNanZhuanZhuan.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens$1.class new file mode 100644 index 0000000..c1d765d Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens$2.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens$2.class new file mode 100644 index 0000000..4f25f9f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens$2.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens$3.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens$3.class new file mode 100644 index 0000000..66a81d2 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens$3.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens.class new file mode 100644 index 0000000..e1566d5 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/hunan/JiQiRens.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupLogService.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupLogService.class new file mode 100644 index 0000000..0697f25 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupLogService.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupPublisherService.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupPublisherService.class new file mode 100644 index 0000000..5053336 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupPublisherService.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupRoomService.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupRoomService.class new file mode 100644 index 0000000..8736335 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupRoomService.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupService.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupService.class new file mode 100644 index 0000000..3380d02 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/service/GroupService.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/HttpClient$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/HttpClient$1.class new file mode 100644 index 0000000..420b3bd Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/HttpClient$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/HttpClient$2.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/HttpClient$2.class new file mode 100644 index 0000000..1c3395f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/HttpClient$2.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/HttpClient.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/HttpClient.class new file mode 100644 index 0000000..b93560b Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/HttpClient.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ISocketLayer.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ISocketLayer.class new file mode 100644 index 0000000..844dfae Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ISocketLayer.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/Message.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/Message.class new file mode 100644 index 0000000..f20807f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/Message.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/MessageResponse.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/MessageResponse.class new file mode 100644 index 0000000..220b0d8 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/MessageResponse.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/NetManager.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/NetManager.class new file mode 100644 index 0000000..d523d67 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/NetManager.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/SocketCode.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/SocketCode.class new file mode 100644 index 0000000..831443f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/SocketCode.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$1.class new file mode 100644 index 0000000..f71e957 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$2.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$2.class new file mode 100644 index 0000000..f843a67 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$2.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$3.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$3.class new file mode 100644 index 0000000..ad35cf0 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$3.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$4.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$4.class new file mode 100644 index 0000000..fd14429 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$4.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$5.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$5.class new file mode 100644 index 0000000..3131a40 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$5.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$ConnectionProtocol.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$ConnectionProtocol.class new file mode 100644 index 0000000..c5392d4 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$ConnectionProtocol.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$NetClientEvent.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$NetClientEvent.class new file mode 100644 index 0000000..f6fa954 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient$NetClientEvent.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient.class new file mode 100644 index 0000000..3db1bee Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/TaurusClient.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager$1.class new file mode 100644 index 0000000..7566f9a Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager$2.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager$2.class new file mode 100644 index 0000000..e34409b Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager$2.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager$MessgaeThread.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager$MessgaeThread.class new file mode 100644 index 0000000..52ada08 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager$MessgaeThread.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager.class new file mode 100644 index 0000000..56e2064 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/ThreadManager.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/business/AccountBusiness.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/business/AccountBusiness.class new file mode 100644 index 0000000..d791bb3 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/business/AccountBusiness.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/business/GroupRoomBusiness.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/business/GroupRoomBusiness.class new file mode 100644 index 0000000..36a661e Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/business/GroupRoomBusiness.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/business/RoomBusiness.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/business/RoomBusiness.class new file mode 100644 index 0000000..84a48f5 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/business/RoomBusiness.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/IOHandler$PacketReadState.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/IOHandler$PacketReadState.class new file mode 100644 index 0000000..63b623d Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/IOHandler$PacketReadState.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/IOHandler.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/IOHandler.class new file mode 100644 index 0000000..31be780 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/IOHandler.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/ISocket$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/ISocket$1.class new file mode 100644 index 0000000..6856c68 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/ISocket$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/ISocket.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/ISocket.class new file mode 100644 index 0000000..b4ea65a Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/ISocket.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/LagMonitor.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/LagMonitor.class new file mode 100644 index 0000000..73e7d86 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/LagMonitor.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/Packet.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/Packet.class new file mode 100644 index 0000000..1e6abe2 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/Packet.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketEngine$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketEngine$1.class new file mode 100644 index 0000000..f839af7 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketEngine$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketEngine.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketEngine.class new file mode 100644 index 0000000..28db844 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketEngine.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketState.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketState.class new file mode 100644 index 0000000..85494e8 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketState.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketTcp$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketTcp$1.class new file mode 100644 index 0000000..f15c0af Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketTcp$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketTcp$2.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketTcp$2.class new file mode 100644 index 0000000..eb2a0ae Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketTcp$2.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketTcp.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketTcp.class new file mode 100644 index 0000000..53a5f81 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SocketTcp.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SystemController$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SystemController$1.class new file mode 100644 index 0000000..0a78c4e Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SystemController$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SystemController$2.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SystemController$2.class new file mode 100644 index 0000000..338ee32 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SystemController$2.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SystemController.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SystemController.class new file mode 100644 index 0000000..7f606e8 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/SystemController.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/TSocketException.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/TSocketException.class new file mode 100644 index 0000000..09bad0f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/client/io/TSocketException.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/AddRedisRobot.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/AddRedisRobot.class new file mode 100644 index 0000000..827f7d1 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/AddRedisRobot.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/AddRoomRobot.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/AddRoomRobot.class new file mode 100644 index 0000000..979d157 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/AddRoomRobot.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/jiqiren$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/jiqiren$1.class new file mode 100644 index 0000000..50fa203 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/jiqiren$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/jiqiren.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/jiqiren.class new file mode 100644 index 0000000..2c6a5f7 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/jiqiren.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren$1.class new file mode 100644 index 0000000..75e001d Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren$2.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren$2.class new file mode 100644 index 0000000..c4b4b7b Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren$2.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren$3.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren$3.class new file mode 100644 index 0000000..93af991 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren$3.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren.class new file mode 100644 index 0000000..f1500e9 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/newRobot/lianjiejiqiren.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/robot/RobotUser$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/robot/RobotUser$1.class new file mode 100644 index 0000000..5f6590f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/robot/RobotUser$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/robot/RobotUser$2.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/robot/RobotUser$2.class new file mode 100644 index 0000000..92c6ea7 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/robot/RobotUser$2.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/robot/RobotUser.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/robot/RobotUser.class new file mode 100644 index 0000000..8eb5f1d Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/robot/RobotUser.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardConfig.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardConfig.class new file mode 100644 index 0000000..ca32cc8 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardConfig.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardGroup.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardGroup.class new file mode 100644 index 0000000..f805747 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardGroup.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardObj.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardObj.class new file mode 100644 index 0000000..28b4010 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardObj.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardUtil.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardUtil.class new file mode 100644 index 0000000..51ab4cc Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/CardUtil.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangShaSuanFaTest.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangShaSuanFaTest.class new file mode 100644 index 0000000..a5677d7 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangShaSuanFaTest.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaMahjongAI$DiscardResult.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaMahjongAI$DiscardResult.class new file mode 100644 index 0000000..3eeee59 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaMahjongAI$DiscardResult.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaMahjongAI$PlayerState.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaMahjongAI$PlayerState.class new file mode 100644 index 0000000..bf502cb Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaMahjongAI$PlayerState.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaMahjongAI.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaMahjongAI.class new file mode 100644 index 0000000..8d6d191 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaMahjongAI.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaWinSplitCard.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaWinSplitCard.class new file mode 100644 index 0000000..d776629 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ChangshaWinSplitCard.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/Config.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/Config.class new file mode 100644 index 0000000..839734f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/Config.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/GroupDatas.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/GroupDatas.class new file mode 100644 index 0000000..dcb31e2 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/GroupDatas.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$1.class new file mode 100644 index 0000000..088afe3 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$GamePhase.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$GamePhase.class new file mode 100644 index 0000000..546ab3c Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$GamePhase.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$HandAnalysis.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$HandAnalysis.class new file mode 100644 index 0000000..dc5c51b Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$HandAnalysis.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$SpecialPattern.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$SpecialPattern.class new file mode 100644 index 0000000..e0fc270 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$SpecialPattern.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$StrategyType.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$StrategyType.class new file mode 100644 index 0000000..871a188 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$StrategyType.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$WinResult.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$WinResult.class new file mode 100644 index 0000000..7847e71 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest$WinResult.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest.class new file mode 100644 index 0000000..d1cd949 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/HongZhongSuanFaTest.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/NewChangshaSuanFaTest.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/NewChangshaSuanFaTest.class new file mode 100644 index 0000000..18f822b Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/NewChangshaSuanFaTest.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/Paixing.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/Paixing.class new file mode 100644 index 0000000..af9ad0f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/Paixing.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/PaoDeKuaiSuanFaTest.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/PaoDeKuaiSuanFaTest.class new file mode 100644 index 0000000..e9ab313 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/PaoDeKuaiSuanFaTest.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/PlayerState.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/PlayerState.class new file mode 100644 index 0000000..63db2b4 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/PlayerState.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ROBOTEventType.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ROBOTEventType.class new file mode 100644 index 0000000..35feaec Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ROBOTEventType.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuChi$TingChiOption.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuChi$TingChiOption.class new file mode 100644 index 0000000..4fa4b6a Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuChi$TingChiOption.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuChi$TingResult.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuChi$TingResult.class new file mode 100644 index 0000000..8c14540 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuChi$TingResult.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuChi.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuChi.class new file mode 100644 index 0000000..53d555d Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuChi.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuGang.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuGang.class new file mode 100644 index 0000000..4fc9419 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuGang.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuPeng$HandAnalysis.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuPeng$HandAnalysis.class new file mode 100644 index 0000000..56ed2ed Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuPeng$HandAnalysis.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuPeng.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuPeng.class new file mode 100644 index 0000000..a778099 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TinHuPeng.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker$HuResult.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker$HuResult.class new file mode 100644 index 0000000..7d9500f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker$HuResult.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker$TingCardInfo.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker$TingCardInfo.class new file mode 100644 index 0000000..0c7a8d5 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker$TingCardInfo.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker$TingResult.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker$TingResult.class new file mode 100644 index 0000000..8233f51 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker$TingResult.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker.class new file mode 100644 index 0000000..30bd4b4 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TingPaiChecker.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TryPutCard.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TryPutCard.class new file mode 100644 index 0000000..1c97011 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/TryPutCard.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/WinCard.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/WinCard.class new file mode 100644 index 0000000..78cf512 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/WinCard.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/WinCardType.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/WinCardType.class new file mode 100644 index 0000000..adf34f0 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/WinCardType.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ZhuanZhuanSuanFaTest$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ZhuanZhuanSuanFaTest$1.class new file mode 100644 index 0000000..4fe51a8 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ZhuanZhuanSuanFaTest$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ZhuanZhuanSuanFaTest$HandAnalysis.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ZhuanZhuanSuanFaTest$HandAnalysis.class new file mode 100644 index 0000000..98f49b1 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ZhuanZhuanSuanFaTest$HandAnalysis.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ZhuanZhuanSuanFaTest.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ZhuanZhuanSuanFaTest.class new file mode 100644 index 0000000..f72cc91 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ZhuanZhuanSuanFaTest.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ai$DiscardResult.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ai$DiscardResult.class new file mode 100644 index 0000000..bad8dfc Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ai$DiscardResult.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ai.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ai.class new file mode 100644 index 0000000..8950922 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/ai.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$CarryOption.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$CarryOption.class new file mode 100644 index 0000000..9f41b54 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$CarryOption.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$HandAnalysis.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$HandAnalysis.class new file mode 100644 index 0000000..195531f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$HandAnalysis.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$PlayOption.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$PlayOption.class new file mode 100644 index 0000000..abf42fb Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$PlayOption.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$PlayOptionWithRemain.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$PlayOptionWithRemain.class new file mode 100644 index 0000000..9703249 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$PlayOptionWithRemain.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$RemainAnalysis.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$RemainAnalysis.class new file mode 100644 index 0000000..0566638 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$RemainAnalysis.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$RemainHandAnalysis.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$RemainHandAnalysis.class new file mode 100644 index 0000000..ece2d09 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test$RemainHandAnalysis.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test.class new file mode 100644 index 0000000..eccc5d8 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test1.class new file mode 100644 index 0000000..6203bcb Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test99.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test99.class new file mode 100644 index 0000000..dcddc55 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/test99.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin$1.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin$1.class new file mode 100644 index 0000000..35e00bb Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin$1.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin$DaziInfo.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin$DaziInfo.class new file mode 100644 index 0000000..fafdc8f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin$DaziInfo.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin$PlayerState.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin$PlayerState.class new file mode 100644 index 0000000..6b9983a Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin$PlayerState.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin.class b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin.class new file mode 100644 index 0000000..b151b20 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/classes/com/robotcm/taurus/util/zuixin.class differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/HikariCP-3.3.1.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/HikariCP-3.3.1.jar new file mode 100644 index 0000000..476e0c0 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/HikariCP-3.3.1.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/annotations-13.0.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/annotations-13.0.jar new file mode 100644 index 0000000..fb794be Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/annotations-13.0.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/c3p0-0.9.1.1.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/c3p0-0.9.1.1.jar new file mode 100644 index 0000000..8d283e4 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/c3p0-0.9.1.1.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/commons-pool2-2.4.2.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/commons-pool2-2.4.2.jar new file mode 100644 index 0000000..fdf8b6f Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/commons-pool2-2.4.2.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/data_cache-1.0.1.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/data_cache-1.0.1.jar new file mode 100644 index 0000000..d5a95ce Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/data_cache-1.0.1.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/game_common-1.0.0.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/game_common-1.0.0.jar new file mode 100644 index 0000000..78ea814 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/game_common-1.0.0.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/gson-2.10.1.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/gson-2.10.1.jar new file mode 100644 index 0000000..a88c5bd Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/gson-2.10.1.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/jboss-logging-3.3.2.Final.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/jboss-logging-3.3.2.Final.jar new file mode 100644 index 0000000..67cde71 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/jboss-logging-3.3.2.Final.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/jdom-1.0.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/jdom-1.0.jar new file mode 100644 index 0000000..288e64c Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/jdom-1.0.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/jedis-2.9.0.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/jedis-2.9.0.jar new file mode 100644 index 0000000..f4d27d3 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/jedis-2.9.0.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/kotlin-stdlib-1.5.10.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/kotlin-stdlib-1.5.10.jar new file mode 100644 index 0000000..5015b3a Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/kotlin-stdlib-1.5.10.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/kotlin-stdlib-common-1.5.10.jar b/robots/robotchangma/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/robots/robotchangma/target/ROOT/WEB-INF/lib/kotlin-stdlib-common-1.5.10.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk7-1.5.10.jar b/robots/robotchangma/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/robots/robotchangma/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk7-1.5.10.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk8-1.5.10.jar b/robots/robotchangma/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/robots/robotchangma/target/ROOT/WEB-INF/lib/kotlin-stdlib-jdk8-1.5.10.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/log4j-1.2.17.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/log4j-1.2.17.jar new file mode 100644 index 0000000..1d425cf Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/log4j-1.2.17.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/mysql-connector-java-8.0.16.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/mysql-connector-java-8.0.16.jar new file mode 100644 index 0000000..dd45f8c Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/mysql-connector-java-8.0.16.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/protobuf-java-3.6.1.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/protobuf-java-3.6.1.jar new file mode 100644 index 0000000..8a18789 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/protobuf-java-3.6.1.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/quartz-2.2.3.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/quartz-2.2.3.jar new file mode 100644 index 0000000..158c1c2 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/quartz-2.2.3.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/slf4j-api-1.7.25.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/slf4j-api-1.7.25.jar new file mode 100644 index 0000000..0143c09 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/slf4j-api-1.7.25.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/taurus-core-1.0.1.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/taurus-core-1.0.1.jar new file mode 100644 index 0000000..cc3d61c Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/taurus-core-1.0.1.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/taurus-permanent-1.0.1.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/taurus-permanent-1.0.1.jar new file mode 100644 index 0000000..b1730a8 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/taurus-permanent-1.0.1.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/taurus-web-1.0.1.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/taurus-web-1.0.1.jar new file mode 100644 index 0000000..33bbdf0 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/taurus-web-1.0.1.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/undertow-core-2.0.16.Final.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/undertow-core-2.0.16.Final.jar new file mode 100644 index 0000000..9a34249 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/undertow-core-2.0.16.Final.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/xnio-api-3.3.8.Final.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/xnio-api-3.3.8.Final.jar new file mode 100644 index 0000000..35a5ce8 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/xnio-api-3.3.8.Final.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/lib/xnio-nio-3.3.8.Final.jar b/robots/robotchangma/target/ROOT/WEB-INF/lib/xnio-nio-3.3.8.Final.jar new file mode 100644 index 0000000..95f7c04 Binary files /dev/null and b/robots/robotchangma/target/ROOT/WEB-INF/lib/xnio-nio-3.3.8.Final.jar differ diff --git a/robots/robotchangma/target/ROOT/WEB-INF/web.xml b/robots/robotchangma/target/ROOT/WEB-INF/web.xml new file mode 100644 index 0000000..5ca5712 --- /dev/null +++ b/robots/robotchangma/target/ROOT/WEB-INF/web.xml @@ -0,0 +1,19 @@ + + + + + taurus-web + com.taurus.web.WebFilter + + main + com.robotcm.MainServer + + + + + taurus-web + /* + + diff --git a/robots/robotchangma/target/ROOT/config/bank_hp.lua b/robots/robotchangma/target/ROOT/config/bank_hp.lua new file mode 100644 index 0000000..d3a02ce --- /dev/null +++ b/robots/robotchangma/target/ROOT/config/bank_hp.lua @@ -0,0 +1,19 @@ +local tag_hp = tonumber(redis.call('hget', KEYS[1],'hp')) +local bank_hp = tonumber(redis.call('hget', KEYS[2],KEYS[3])) +bank_hp = not bank_hp and 0 or bank_hp +local hp = tonumber(ARGV[1]) +local opt = tonumber(ARGV[2]) +if opt==0 then + if bank_hp < hp then + return 3 + end + bank_hp = redis.call('hincrBy',KEYS[2],KEYS[3],-hp) + tag_hp = redis.call('hincrBy',KEYS[1],'hp',hp) +else + if tag_hp < hp then + return 4 + end + bank_hp = redis.call('hincrBy',KEYS[2],KEYS[3],hp) + tag_hp = redis.call('hincrBy',KEYS[1],'hp',-hp) +end +return {tag_hp,bank_hp} \ No newline at end of file diff --git a/robots/robotchangma/target/ROOT/config/log4j.properties b/robots/robotchangma/target/ROOT/config/log4j.properties new file mode 100644 index 0000000..6786dba --- /dev/null +++ b/robots/robotchangma/target/ROOT/config/log4j.properties @@ -0,0 +1,20 @@ + +log4j.rootLogger = INFO,consoleAppender,fileAppender + +# ConsoleAppender +log4j.appender.consoleAppender=org.apache.log4j.ConsoleAppender +log4j.appender.consoleAppender.layout=org.apache.log4j.PatternLayout +log4j.appender.consoleAppender.layout.ConversionPattern=%d{HH:mm:ss,SSS} %-5p [%t] %c{2} %3x - %m%n + + +# Regular FileAppender +log4j.appender.fileAppender=org.apache.log4j.DailyRollingFileAppender +log4j.appender.fileAppender.layout=org.apache.log4j.PatternLayout +log4j.appender.fileAppender.File=${WORKDIR}/logs/web_main.log +log4j.appender.fileAppender.layout.ConversionPattern=%d{dd MMM yyyy | HH:mm:ss,SSS} | %-5p | %t | %c{3} | %3x | %m%n +log4j.appender.fileAppender.Encoding=UTF-8 +log4j.appender.fileAppender.DatePattern='.'yyyy-MM-dd +log4j.appender.dailyFile.Append=true + +# The file is rolled over very day +log4j.appender.fileAppender.DatePattern ='.'yyyy-MM-dd \ No newline at end of file diff --git a/robots/robotchangma/target/ROOT/config/mgr.lua b/robots/robotchangma/target/ROOT/config/mgr.lua new file mode 100644 index 0000000..50b3c69 --- /dev/null +++ b/robots/robotchangma/target/ROOT/config/mgr.lua @@ -0,0 +1,25 @@ +-- redis.call('select',0) +local mgr_hp = tonumber(redis.call('hget', KEYS[1],'hp')) +local tag_hp = tonumber(redis.call('hget', KEYS[2],'hp')) + +local ulev = tonumber(ARGV[2]) +local hp = tonumber(ARGV[1]) +if ulev == 3 or ulev == 2 then + if hp > 0 and mgr_hp + + 670680 + 18 + blm523 + 47.109.55.7 + 6311 + \ No newline at end of file diff --git a/robots/robotchangma/target/ROOT/config/take_hp.lua b/robots/robotchangma/target/ROOT/config/take_hp.lua new file mode 100644 index 0000000..83d79a0 --- /dev/null +++ b/robots/robotchangma/target/ROOT/config/take_hp.lua @@ -0,0 +1,10 @@ +local reward_hp = tonumber(redis.call('get', KEYS[1])) +local hp = tonumber(ARGV[1]) +local tag_hp = 0 +if hp > 0 and reward_hp < hp then + return 3 +else + reward_hp = redis.call('incrBy',KEYS[1],-hp) + tag_hp = redis.call('hincrBy',KEYS[2],'hp',hp) +end +return {reward_hp,tag_hp} \ No newline at end of file diff --git a/robots/robotchangma/target/ROOT/config/taurus-core.xml b/robots/robotchangma/target/ROOT/config/taurus-core.xml new file mode 100644 index 0000000..49c529b --- /dev/null +++ b/robots/robotchangma/target/ROOT/config/taurus-core.xml @@ -0,0 +1,100 @@ + + + log4j.properties + + + database + com.taurus.core.plugin.database.DataBasePlugin + + + + 100 + + 10 + + 180000 + + select 1 + + 10000 + + 60000 + + + + false + true + utf-8 + + UTC + + true + + 250 + + 2048 + + + + + + db1 + com.mysql.cj.jdbc.Driver + jdbc:mysql://47.109.55.7:8060/wb_game + root + 6KYnXJjGhxNceF8e + + + + + + redis + com.taurus.core.plugin.redis.RedisPlugin + + + + 80 + + 20 + + 5 + + -1 + + true + + true + + true + + 100 + + 60000 + + 30000 + + 1800000 + + true + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/robots/robotchangma/target/ROOT/config/trade.lua b/robots/robotchangma/target/ROOT/config/trade.lua new file mode 100644 index 0000000..c03a438 --- /dev/null +++ b/robots/robotchangma/target/ROOT/config/trade.lua @@ -0,0 +1,12 @@ +local mgr_hp = tonumber(redis.call('hget', KEYS[1],'hp')) +local tag_hp = tonumber(redis.call('hget', KEYS[2],'hp')) +mgr_hp = not mgr_hp and 0 or mgr_hp +tag_hp = not tag_hp and 0 or tag_hp +local hp = tonumber(ARGV[1]) +if hp > 0 and mgr_hp