Print Ingest settings on start

This commit is contained in:
Mark Veidemanis 2022-09-23 08:32:29 +01:00
parent 09fc63d0ad
commit f0df3e80fd
1 changed files with 6 additions and 0 deletions

View File

@ -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: