From d39807c5abcb2e093361b7bc46d95d7e8ad15225 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 29 Jun 2020 14:47:13 +0200 Subject: [PATCH] adding course and record id to validaiton log --- rowers/tasks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rowers/tasks.py b/rowers/tasks.py index f573ec44..26ef86e3 100644 --- a/rowers/tasks.py +++ b/rowers/tasks.py @@ -450,6 +450,8 @@ def handle_check_race_course(self, t = time.localtime() timestamp = time.strftime('%b-%d-%Y_%H%M', t) f.write('\n') + f.write('Course id {n}, Record id {m}'.format(n=courseid,m=recordid)) + f.write('\n') f.write(timestamp) f.write(' ') f.write('Found {n} entrytimes'.format(n=len(entrytimes)))