Browse Source

:art: 桌面端内置 Pandoc 可执行文件 https://github.com/siyuan-note/siyuan/issues/5835

Liang Ding 2 years ago
parent
commit
05cbc28185
1 changed files with 2 additions and 2 deletions
  1. 2 2
      kernel/util/working.go

+ 2 - 2
kernel/util/working.go

@@ -471,7 +471,7 @@ func initPandoc() {
 	}
 	pandocVer := getPandocVer(PandocBinPath)
 	if "" != pandocVer {
-		logging.LogInfof("pandoc [ver=%s, bin=%s]", pandocVer, PandocBinPath)
+		logging.LogInfof("built-in pandoc [ver=%s, bin=%s]", pandocVer, PandocBinPath)
 		return
 	}
 
@@ -494,7 +494,7 @@ func initPandoc() {
 		exec.Command("chmod", "+x", PandocBinPath).CombinedOutput()
 	}
 	pandocVer = getPandocVer(PandocBinPath)
-	logging.LogInfof("initialized pandoc [ver=%s, bin=%s]", pandocVer, PandocBinPath)
+	logging.LogInfof("initialized built-in pandoc [ver=%s, bin=%s]", pandocVer, PandocBinPath)
 }
 
 func getPandocVer(binPath string) (ret string) {