From 9192f1561034a9cf9fde90760f4e026beb3c2178 Mon Sep 17 00:00:00 2001 From: Misaka_Company Date: Mon, 12 Jan 2026 16:43:37 +0800 Subject: [PATCH] Change log message from log_success to log_info for table sync completion --- run_incremental_sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_incremental_sync.py b/run_incremental_sync.py index 29c14ed..b438ea0 100644 --- a/run_incremental_sync.py +++ b/run_incremental_sync.py @@ -154,8 +154,8 @@ def process_sync_task(): sql_cursor.execute(update_log_sql, log_ids) sql_conn.commit() - log_success(f"表 [{target_table}] 同步完成: {len(record_ids)} 条记录") - + log_info(f"表 [{target_table}] 同步完成: {len(record_ids)} 条记录") + file_success_count += 1 file_total_records += len(record_ids)