From 6858c2e2de9425712be9611821c0856644ee3914 Mon Sep 17 00:00:00 2001 From: Christopher Usher Date: Mon, 19 Aug 2019 23:45:10 -0700 Subject: [PATCH] starting on logging and monitoring --- thrimshim/thrimshim/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/thrimshim/thrimshim/main.py b/thrimshim/thrimshim/main.py index 26b8c31..c0a1e21 100644 --- a/thrimshim/thrimshim/main.py +++ b/thrimshim/thrimshim/main.py @@ -89,6 +89,7 @@ def get_row(ident): else value ) for key, value in response.items() } + logging.info('Row {} fetched'.format(ident)) return json.dumps(response) def update_row(ident, new_row):