remove debug

This commit is contained in:
Girish Ramakrishnan
2021-02-24 16:39:41 -08:00
parent b0e80de9ec
commit 4a85207dba

View File

@@ -85,8 +85,6 @@ function getLanguages(callback) {
var jsonFiles = result.filter(function (file) { return path.extname(file) === '.json'; });
languages = jsonFiles.map(function (file) { return path.basename(file, '.json'); });
debug('Languages found:', jsonFiles);
callback(null, languages);
});
}