turning down logging from warn to debug, working on #15

main
Mark Cotton 2023-08-15 09:05:39 -05:00
parent 2b78898f0b
commit 24b6a36700
1 changed files with 2 additions and 2 deletions

2
app.py
View File

@ -271,7 +271,7 @@ 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))
# logging.debug(data.tail(200))
# data['status'] = data['status'].astype('int64')
data = data.drop(['startTimestamp'], axis=1)