From 743ca6bfe3d12ea937001c4947a55a47fcb7493c Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 11 Dec 2018 17:09:59 -0500 Subject: [PATCH] Log quotes even without caching --- piker/brokers/data.py | 1 + 1 file changed, 1 insertion(+) diff --git a/piker/brokers/data.py b/piker/brokers/data.py index b9431654..af5c10b3 100644 --- a/piker/brokers/data.py +++ b/piker/brokers/data.py @@ -90,6 +90,7 @@ async def stream_quotes( new_quotes.append(quote) else: new_quotes = quotes + log.info(f"Delivering quotes:\n{quotes}") yield new_quotes