From 412816bbbcf86045e723ffb85d5049770d886834 Mon Sep 17 00:00:00 2001 From: BoYanZh Date: Mon, 25 Nov 2024 04:40:33 -0500 Subject: [PATCH] chore: info log submit count --- joint_teapot/app.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/joint_teapot/app.py b/joint_teapot/app.py index 55295c9..7e67788 100644 --- a/joint_teapot/app.py +++ b/joint_teapot/app.py @@ -719,6 +719,12 @@ def joj3_check( f"max count={max_count}, submit count={submit_count}" ) raise Exit(code=1) + logger.info( + f"submitter {submitter} has submitted {submit_count} time(s), " + f"group={group}, " + f"time period={time_period} hour(s), " + f"max count={max_count}, submit count={submit_count}" + ) if __name__ == "__main__":