From f97308bef210e0a3a71ff6c97d6466d0f3f6a70c Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Sat, 10 Sep 2022 21:40:08 +0300 Subject: [PATCH] Fix log message on writing JSONL data to file --- src/utils/jsonl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/jsonl.py b/src/utils/jsonl.py index 91eac555..77b5af11 100644 --- a/src/utils/jsonl.py +++ b/src/utils/jsonl.py @@ -44,7 +44,7 @@ def dump_jsonl(jsonl_data, output_path): with open(output_path, 'w', encoding='utf-8') as f: f.write(jsonl_data) - logger.info(f'Wrote {len(jsonl_data)} lines to jsonl at {output_path}') + logger.info(f'Wrote jsonl data to {output_path}') def compress_jsonl_data(jsonl_data, output_path):