Browse Source

优化打印

johnclot69 2 months ago
parent
commit
20c69bb0d6

+ 3 - 6
incubator-game/src/main/java/com/incubator/game/room/FSGDTable.java

@@ -362,8 +362,7 @@ public class FSGDTable {
                     data.put("tributeInfo", tributeInfo);
                     data.put("state", 2);
                     data.put("time", !this.data.tributeList.isEmpty()? 40 : 20);
-                    Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name,
-                            CardUtils.printCards(tmPlayer.data.remainCards, this.data.curLevelPoint));
+                    Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name, tmPlayer.data.remainCards);
                     tmPlayer.receive(CommonProto.Cmd.GameStateChange_VALUE, data);
                 }
             }
@@ -587,8 +586,7 @@ public class FSGDTable {
                 data.put("tributeInfo", tributeInfo);
                 data.put("state", 2);
                 data.put("time", !this.data.tributeList.isEmpty()? 40 : 20);
-                Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name,
-                        CardUtils.printCards(tmPlayer.data.remainCards, this.data.curLevelPoint));
+                Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name, tmPlayer.data.remainCards);
                 tmPlayer.receive(CommonProto.Cmd.GameStateChange_VALUE, data);
             }
         }
@@ -691,8 +689,7 @@ public class FSGDTable {
                 data.put("tributeInfo", tributeInfo);
                 data.put("state", 2);
                 data.put("time", 20);
-                Log.debug("进还贡换牌...玩家 : {}, 手牌 : {}", tmPlayer.data.name,
-                        CardUtils.printCards(tmPlayer.data.remainCards, this.data.curLevelPoint));
+                Log.debug("进还贡换牌...玩家 : {}, 手牌 : {}", tmPlayer.data.name, tmPlayer.data.remainCards);
                 tmPlayer.receive(CommonProto.Cmd.GameStateChange_VALUE, data);
             }
         }

+ 3 - 6
incubator-game/src/main/java/com/incubator/game/room/GDRoom.java

@@ -492,8 +492,7 @@ public class GDRoom extends Room {
                     data.put("tributeInfo", tributeInfo);
                     data.put("state", 2);
                     data.put("time", !this.data.tributeList.isEmpty()? 40 : 20);
-                    Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name,
-                            CardUtils.printCards(tmPlayer.data.remainCards, this.data.curLevelPoint));
+                    Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name, tmPlayer.data.remainCards);
                     tmPlayer.receive(CommonProto.Cmd.GameStateChange_VALUE, data);
                 }
             }
@@ -756,8 +755,7 @@ public class GDRoom extends Room {
                 data.put("tributeInfo", tributeInfo);
                 data.put("state", 2);
                 data.put("time", !this.data.tributeList.isEmpty()? 40 : 20);
-                Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name,
-                        CardUtils.printCards(tmPlayer.data.remainCards, this.data.curLevelPoint));
+                Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name, tmPlayer.data.remainCards);
                 tmPlayer.receive(CommonProto.Cmd.GameStateChange_VALUE, data);
             }
         }
@@ -861,8 +859,7 @@ public class GDRoom extends Room {
                 data.put("tributeInfo", tributeInfo);
                 data.put("state", 2);
                 data.put("time", 20);
-                Log.debug("进还贡换牌...玩家 : {}, 手牌 : {}", tmPlayer.data.name,
-                        CardUtils.printCards(tmPlayer.data.remainCards, this.data.curLevelPoint));
+                Log.debug("进还贡换牌...玩家 : {}, 手牌 : {}", tmPlayer.data.name, tmPlayer.data.remainCards);
                 tmPlayer.receive(CommonProto.Cmd.GameStateChange_VALUE, data);
             }
         }

+ 3 - 6
incubator-game/src/main/java/com/incubator/game/room/ZDRoom.java

@@ -570,8 +570,7 @@ public class ZDRoom extends Room {
                     data.put("tributeInfo", tributeInfo);
                     data.put("state", 2);
                     data.put("time", !this.data.tributeList.isEmpty()? 40 : 20);
-                    Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name,
-                            CardUtils.printCards(tmPlayer.data.remainCards, this.data.curLevelPoint));
+                    Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name, tmPlayer.data.remainCards);
                     tmPlayer.receive(CommonProto.Cmd.GameStateChange_VALUE, data);
                 }
             }
@@ -818,8 +817,7 @@ public class ZDRoom extends Room {
                 data.put("tributeInfo", tributeInfo);
                 data.put("state", 2);
                 data.put("time", !this.data.tributeList.isEmpty()? 40 : 20);
-                Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name,
-                        CardUtils.printCards(tmPlayer.data.remainCards, this.data.curLevelPoint));
+                Log.debug("玩家 : {}, 手牌 : {}", tmPlayer.data.name, tmPlayer.data.remainCards);
                 tmPlayer.receive(CommonProto.Cmd.GameStateChange_VALUE, data);
             }
         }
@@ -922,8 +920,7 @@ public class ZDRoom extends Room {
                 data.put("tributeInfo", tributeInfo);
                 data.put("state", 2);
                 data.put("time", 20);
-                Log.debug("进还贡换牌...玩家 : {}, 手牌 : {}", tmPlayer.data.name,
-                        CardUtils.printCards(tmPlayer.data.remainCards, this.data.curLevelPoint));
+                Log.debug("进还贡换牌...玩家 : {}, 手牌 : {}", tmPlayer.data.name, tmPlayer.data.remainCards);
                 tmPlayer.receive(CommonProto.Cmd.GameStateChange_VALUE, data);
             }
         }