From 0c020ec60256ddb2daf8ae689439314a26000afe Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Sun, 11 Aug 2024 11:17:57 +0800 Subject: [PATCH] fix --- pywxdump/wx_core/merge_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywxdump/wx_core/merge_db.py b/pywxdump/wx_core/merge_db.py index 04fd160..99e697b 100644 --- a/pywxdump/wx_core/merge_db.py +++ b/pywxdump/wx_core/merge_db.py @@ -438,7 +438,7 @@ def merge_real_time_db(key, merge_path: str, db_paths: [dict] or dict, real_time # 调用cmd命令 cmd = f'{real_time_exe_path} "{key}" "{merge_path}" "{endbs}"' # os.system(cmd) - wx_core_loger.info(f"合并实时数据库命令:{cmd}") + # wx_core_loger.info(f"合并实时数据库命令:{cmd}") p = subprocess.Popen(cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=merge_path_base, creationflags=subprocess.CREATE_NO_WINDOW) out, err = p.communicate() # 查看返回值