From 56b5c85facb71a291e70744e53f132f747f6684e Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Fri, 23 Sep 2022 08:32:29 +0100 Subject: [PATCH] Print Ingest settings on start --- sources/ingest.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sources/ingest.py b/sources/ingest.py index 21418b4..f481a98 100644 --- a/sources/ingest.py +++ b/sources/ingest.py @@ -25,6 +25,12 @@ class Ingest(object): def __init__(self): name = self.__class__.__name__ self.log = util.get_logger(name) + self.log.info( + ( + "Starting ingest handler for chunk size of " + f"{CHUNK_SIZE} every {ITER_DELAY} seconds." + ) + ) async def run(self): while True: