From 24b6a367003a7b24110d3b219b7c4725b93bdaef Mon Sep 17 00:00:00 2001 From: Mark Cotton Date: Tue, 15 Aug 2023 09:05:39 -0500 Subject: [PATCH] turning down logging from warn to debug, working on #15 --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index a877c0b..15ac66a 100644 --- a/app.py +++ b/app.py @@ -271,8 +271,8 @@ def camera_status_plot(esn=None): imp = imp.drop(['id', 'actorId', 'data', 'status_desc'], axis=1) imp['status'] = imp['status'].ffill() data = imp.resample('S').ffill() - logging.warn(data.tail(200)) - #data['status'] = data['status'].astype('int64') + # logging.debug(data.tail(200)) + # data['status'] = data['status'].astype('int64') data = data.drop(['startTimestamp'], axis=1)