From 4b91fcb61544b0085e2b7eb40b32c1be68c96dbb Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Tue, 20 Nov 2018 21:20:35 -0500 Subject: [PATCH] Improved video page debug logging --- blinkpy/sync_module.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/blinkpy/sync_module.py b/blinkpy/sync_module.py index c106e70..2a5e54e 100644 --- a/blinkpy/sync_module.py +++ b/blinkpy/sync_module.py @@ -141,9 +141,10 @@ class BlinkSyncModule(): if not this_page: break videos.append(this_page) - + _LOGGER.debug("Getting videos from page %s through %s", + start_page, + end_page) for page in videos: - _LOGGER.debug("Retrieved video page %s", page) for entry in page: camera_name = entry['camera_name'] clip_addr = entry['address'] @@ -174,5 +175,5 @@ class BlinkSyncModule(): } ] self.record_dates = all_dates - + _LOGGER.debug("Retrieved a total of %s records".format(len(all_dates))) return self.videos