1
0
mirror of synced 2025-12-23 11:54:18 -05:00

remove leftover console log debugging (#22689)

This commit is contained in:
Peter Bengtsson
2021-11-10 11:12:05 -05:00
committed by GitHub
parent 18497d02e2
commit 88ba2a671a

View File

@@ -11,7 +11,6 @@ const _basePaths = new Map()
function getBasePath(directory) {
if (!_basePaths.has(directory)) {
_basePaths.set(directory, path.posix.join(__dirname, '..', directory, 'content'))
console.log(_basePaths.get(directory))
}
return _basePaths.get(directory)
}