Skip to content

Commit 6aaa7d7

Browse files
ivandevpulivz
authored andcommitted
fix($markdown): notify error when not found snippet (close: #1872) (#1910)
1 parent 7c973ab commit 6aaa7d7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/@vuepress/markdown/lib/snippet.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { fs, path } = require('@vuepress/shared-utils')
1+
const { fs, logger, path } = require('@vuepress/shared-utils')
22

33
module.exports = function snippet (md, options = {}) {
44
const fence = md.renderer.rules.fence
@@ -15,8 +15,9 @@ module.exports = function snippet (md, options = {}) {
1515
if (fs.existsSync(src)) {
1616
token.content = fs.readFileSync(src, 'utf8')
1717
} else {
18-
token.content = 'Not found: ' + src
18+
token.content = `Code snippet path not found: ${src}`
1919
token.info = ''
20+
logger.error(token.content)
2021
}
2122
}
2223
return fence(...args)

0 commit comments

Comments
 (0)