From 2ece6a9d52e3cc210edb89a26ba7e599d5c4f7fe Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 26 十二月 2019 16:04:10 +0800
Subject: [PATCH] 8346 【恺英】【后端】协助系统(宗门类镜像协助支持,删除镜像协助记录)

---
 ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Assist.py |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Assist.py b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Assist.py
index 2a212f9..7050296 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Assist.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/Assist.py
@@ -62,16 +62,16 @@
     assistThanksMgr = PyDataManager.GetPlayerAssistThanksPyManager()
     GameWorld.Log("---------- 未完结总感谢条数: %s" % len(assistThanksMgr.allAssistThanksList))
     for playerID, thanksList in assistThanksMgr.playerThanksDict.items():
-        GameWorld.DebugLog("玩家未发送感谢数: %s, %s" % (playerID, len(thanksList)))
+        GameWorld.DebugLog("--- 玩家未发送感谢数: %s, %s" % (playerID, len(thanksList)))
         for i, thanks in enumerate(thanksList):
-            GameWorld.DebugLog("    i=%s, %s" % (i, thanks.outputString()))
-            GameWorld.DebugLog("    %s" % thanks.AssistPlayerDict)
+            GameWorld.DebugLog("    %s itemID=%s,map(%s,%s,%s), %s %s" % (i, thanks.ItemID, thanks.MapID, thanks.LineID, thanks.NPCID, thanks.TimeStr, thanks.GUID), thanks.PlayerID)
+            GameWorld.DebugLog("        ThanksState=%s, %s" % (thanks.ThanksState, thanks.AssistPlayerDict), thanks.PlayerID)
             
     for playerID, thanksList in assistThanksMgr.assistPlayerThanksDict.items():
-        GameWorld.DebugLog("玩家未接收感谢数: %s, %s" % (playerID, len(thanksList)))
+        GameWorld.DebugLog("--- 玩家未接收感谢数: %s, %s" % (playerID, len(thanksList)))
         for i, thanks in enumerate(thanksList):
-            GameWorld.DebugLog("    i=%s, %s" % (i, thanks.outputString()))
-            GameWorld.DebugLog("    %s" % thanks.AssistPlayerDict)
+            GameWorld.DebugLog("    %s itemID=%s,map(%s,%s,%s), %s %s" % (i, thanks.ItemID, thanks.MapID, thanks.LineID, thanks.NPCID, thanks.TimeStr, thanks.GUID), thanks.PlayerID)
+            GameWorld.DebugLog("        ThanksState=%s, %s" % (thanks.ThanksState, thanks.AssistPlayerDict), thanks.PlayerID)
                     
     GameWorld.DebugLog("-----------------------------------------")
     return

--
Gitblit v1.8.0