Browse Source

修改日志

zhangyong 1 year ago
parent
commit
2dcae01a77
1 changed files with 0 additions and 1 deletions
  1. 0 1
      video_capture/douyin/douyin_author/douyin_author.py

+ 0 - 1
video_capture/douyin/douyin_author/douyin_author.py

@@ -104,7 +104,6 @@ class douyinAuthor():
                 if body == "":
                     Common.logger().info(f"请求获取body为空")
                     continue
-                Common.logger().info(f"请求获取body数据:{body}")
                 obj = json.loads(body)
                 has_more = True if obj.get('has_more', 0) == 1 else False
                 next_cursor = str(obj.get('max_cursor')) if has_more else None