From 78d0f227e8c60cc85df9dfcaf3f2245c68316def Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Mon, 30 Oct 2023 18:01:53 +1100 Subject: [PATCH] backfiller: Include channel name being backfilled in logs --- backfiller/backfiller/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backfiller/backfiller/main.py b/backfiller/backfiller/main.py index 9e60b73..e0bee91 100644 --- a/backfiller/backfiller/main.py +++ b/backfiller/backfiller/main.py @@ -178,7 +178,7 @@ def get_remote_segment(base_dir, node, channel, quality, hour, missing_segment, logging.debug('Saving completed segment {} as {}'.format(temp_path, path)) common.rename(temp_path, path) segments_backfilled.labels(remote=node, channel=channel, quality=quality, hour=hour).inc() - logger.info('Segment {}/{}/{} backfilled'.format(quality, hour, missing_segment)) + logger.info('Segment {}/{}/{}/{} backfilled'.format(channel, quality, hour, missing_segment)) def list_hours(node, channel, quality, start=None):