Logging info about processed Fit entries to debug why we don't always get all the new events

This commit is contained in:
Fabio Manganiello 2019-03-19 11:29:53 +00:00
parent af97f7b6a5
commit eb7b9c066c
1 changed files with 9 additions and 0 deletions

View File

@ -62,8 +62,11 @@ class GoogleFitBackend(Backend):
while not self.should_stop():
new_last_timestamp = last_timestamp
self.logger.info('Scanning fit data source, last seen timestamp: {}'.
format(last_timestamp))
for data_source in self.data_sources:
data_source_last_timestamp = 0
data_points = get_plugin('google.fit').get_data(
user_id=self.user_id, data_source_id=data_source).output
@ -85,6 +88,12 @@ class GoogleFitBackend(Backend):
))
new_last_timestamp = max(dp_time, new_last_timestamp)
data_source_last_timestamp = max(dp_time, data_source_last_timestamp)
self.logger.info('Got {} entries from data source {}, last timestamp: {}'.
format(len(data_points), data_source,
data_source_last_timestamp))
last_timestamp = new_last_timestamp