From 102190e61b58ec964c7562914f8949165e47cff5 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sat, 18 May 2019 11:41:17 -0400 Subject: [PATCH] Changed log to print --- blinkpy/blinkpy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blinkpy/blinkpy.py b/blinkpy/blinkpy.py index 6518c95..d574d1d 100644 --- a/blinkpy/blinkpy.py +++ b/blinkpy/blinkpy.py @@ -325,5 +325,5 @@ class Blink(): _LOGGER.info("Downloaded video to %s", filename) else: - _LOGGER.info("Camera: %s, Timestamp: %s, Address: %s", - camera_name, created_at, address) + print("Camera: {}, Timestamp: {}, Address: {}".format( + camera_name, created_at, address))