fixed debug logging

Signed-off-by: Arthur Lu <learthurgo@gmail.com>

Former-commit-id: bd87111e08
This commit is contained in:
Arthur Lu 2021-10-28 21:12:28 +00:00
parent 0af93238be
commit 9ddf61621e

View File

@ -308,16 +308,11 @@ def main(send, verbose = False, profile = False, debug = False):
current_module.load_data() current_module.load_data()
current_module.process_data(exec_threads) current_module.process_data(exec_threads)
current_module.push_results() current_module.push_results()
print(m + " module finished in " + str(time.time() - start) + " seconds") send(stdout, INF, m + " module finished in " + str(time.time() - start) + " seconds")
if debug:
if debug: f = open(m + ".log", "w+")
f = open("matchloop.log", "w+") json.dump({"data": current_module.data, "results":current_module.results}, f, ensure_ascii=False, indent=4)
json.dump(match_results, f, ensure_ascii=False, indent=4) f.close()
f.close()
f = open("pitloop.log", "w+")
json.dump(pit_results, f, ensure_ascii=False, indent=4)
f.close()
set_current_time(client, loop_start) set_current_time(client, loop_start)
close_all() close_all()