浏览代码

Comment out debug messages

Foppe Hemminga 6 年之前
父节点
当前提交
135beb1668
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      model.py

+ 4 - 4
model.py

@@ -156,9 +156,9 @@ def calculate_time_to_next_attack(this_player_id):
     apocalypse_time = starting_time + seconds_till_level_iv
     time_now = arrow.utcnow().timestamp
     diff = apocalypse_time - time_now
-    print(diff)
+    # print(diff)
     # diff_in_minutes = int(diff//60)
-    print(
-        f'starting time {starting_time}, seconds_till_level_iv {seconds_till_level_iv}, ' +
-        f'apocalypse_time {apocalypse_time}')
+    # print(
+    #     f'starting time {starting_time}, seconds_till_level_iv {seconds_till_level_iv}, ' +
+    #     f'apocalypse_time {apocalypse_time}')
     return diff, apocalypse_time