Remove 'Using language:' debug print

This commit is contained in:
Justin C. Miller
2024-02-18 16:03:27 -08:00
parent 1608b34453
commit aa57d606ce

View File

@@ -17,7 +17,6 @@ let language = "test.lang";
if (positionals.length > 0) if (positionals.length > 0)
language = positionals[0]; language = positionals[0];
console.log(`Using language: ${language}`);
const def = await Bun.file(language).text(); const def = await Bun.file(language).text();
try { try {