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) {