Remove logging from injection callback

This commit is contained in:
Andrew Dupont 2024-01-05 11:53:32 -08:00
parent 00de52c859
commit 1dc1536621

View File

@ -108,8 +108,7 @@ exports.activate = function () {
type: 'heredoc',
language(node) {
let id = node.firstNamedChild;
if (id.type !== 'heredoc_start') { return null; }
console.log('returning heredoc name:', id.text);
if (id.type !== 'heredoc_start') return null;
return id.text;
},
content(node) {