From af6e866a18619d0b8bd1c35e52420c252399d46e Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Sun, 11 Aug 2024 11:17:45 +0800 Subject: [PATCH] fix --- pywxdump/wx_core/merge_db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pywxdump/wx_core/merge_db.py b/pywxdump/wx_core/merge_db.py index 0fab07f..04fd160 100644 --- a/pywxdump/wx_core/merge_db.py +++ b/pywxdump/wx_core/merge_db.py @@ -438,6 +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}") 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() # 查看返回值