Skip to content

Commit 4eb1667

Browse files
committed
* 修改日志类型
1 parent 58a6990 commit 4eb1667

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

examples/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ diff_output = "csv"
33
# 合并的临时输出文件格式
44
merge_output = "txt"
55
# 对比工具的执行文件
6-
compare_exe = "D:\\software\\tools\\BeyondComparePro v4.1.5.21031 绿色精简优化版 x64\\Beyond Compare\\BCompare.exe"
6+
compare_exe = "C:\\Program Files\\Beyond Compare 4\\BCompare.exe"
77
# 对比工具参数{left} {right}
88
diff_arg = "{left} {right}"
99
# 合并工具参数

register_tools/entry.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ func Run() {
5353
}
5454

5555
if len(supportRegisters) <= 0 {
56-
slog.Panicf("[register] The current system does not support registration tools. Please manually configure config.toml and manually configure version tools\n(当前系统不支持注册工具,请手动配置config.toml,以及手动配置版本工具)")
56+
slog.Warnf("[register] The current system does not support registration tools. Please manually configure config.toml and manually configure version tools\n(当前系统不支持注册工具,请手动配置config.toml,以及手动配置版本工具)")
57+
console.AnyKeyToQuit()
58+
return
5759
}
5860

5961
// 通过对话框选择对比工具
@@ -96,7 +98,8 @@ func Run() {
9698
}
9799

98100
if len(answers) == 0 {
99-
slog.Info("[register] No SCM tool is registered(没有选择注册SCM工具)")
101+
slog.Warnf("[register] No SCM tool is registered(没有选择注册SCM工具)")
102+
console.AnyKeyToQuit()
100103
return
101104
}
102105

@@ -107,7 +110,7 @@ func Run() {
107110
if ok {
108111
slog.Infof("[register] register_tools success(注册SCM工具成功): %s", scmTools.Name())
109112
} else {
110-
slog.Infof("[register] Failed to register SCM tool, possibly not installed or open\n(注册SCM工具失败,可能是没有安装,或者是打开状态): %s", scmTools.Name())
113+
slog.Warnf("[register] Failed to register SCM tool, possibly not installed or open\n(注册SCM工具失败,可能是没有安装,或者是打开状态): %s", scmTools.Name())
111114
}
112115
}
113116

0 commit comments

Comments
 (0)