logging fix

This commit is contained in:
Christian Schwarz
2023-04-03 08:12:08 +00:00
parent 990337f331
commit db0aa1c45d

View File

@@ -74,7 +74,7 @@ def do_csv(csv_file, merge_existing_with):
# skip header row
continue
if len(line) != 2:
logging.warning(f"skipping line {n+1}: {line}")
logging.warn(f"skipping line {n+1}: {line}")
continue
tenant_id = line[0]
pageserver = line[1]