From 05cbc281859aa71a81c8c3a63b71001bffb4ec6a Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Wed, 7 Sep 2022 11:34:45 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E6=A1=8C=E9=9D=A2=E7=AB=AF=E5=86=85?= =?UTF-8?q?=E7=BD=AE=20Pandoc=20=E5=8F=AF=E6=89=A7=E8=A1=8C=E6=96=87?= =?UTF-8?q?=E4=BB=B6=20https://github.com/siyuan-note/siyuan/issues/5835?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/util/working.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/util/working.go b/kernel/util/working.go index f93d60280..08fcaa611 100644 --- a/kernel/util/working.go +++ b/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) {