From f6b420b7d75492e2d19ac06af1be55b2a0ecd551 Mon Sep 17 00:00:00 2001 From: Sheppy Date: Mon, 15 Jun 2020 19:25:00 +0200 Subject: [PATCH] add debug output for parsed round --- python/httpAPI.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/httpAPI.py b/python/httpAPI.py index 2773875..7a94a75 100644 --- a/python/httpAPI.py +++ b/python/httpAPI.py @@ -90,6 +90,7 @@ def singleEvent(): os.remove(fullPath) matchRound = backends.eventStream.parse(events) evaluateRound(matchRound) + print(matchRound.toJson()) else: with open(fullPath, "a") as f: f.write(json.dumps(jsonDict))