We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c973ab commit 6aaa7d7Copy full SHA for 6aaa7d7
packages/@vuepress/markdown/lib/snippet.js
@@ -1,4 +1,4 @@
1
-const { fs, path } = require('@vuepress/shared-utils')
+const { fs, logger, path } = require('@vuepress/shared-utils')
2
3
module.exports = function snippet (md, options = {}) {
4
const fence = md.renderer.rules.fence
@@ -15,8 +15,9 @@ module.exports = function snippet (md, options = {}) {
15
if (fs.existsSync(src)) {
16
token.content = fs.readFileSync(src, 'utf8')
17
} else {
18
- token.content = 'Not found: ' + src
+ token.content = `Code snippet path not found: ${src}`
19
token.info = ''
20
+ logger.error(token.content)
21
}
22
23
return fence(...args)
0 commit comments