Remove console.log when ignoring disabled module

This commit is contained in:
Nick O'Leary
2022-02-14 10:46:08 +00:00
parent e5e3832809
commit 1388b03cf2

View File

@@ -353,7 +353,6 @@ async function loadPluginConfig(fileInfo) {
*/
function loadNodeSet(node) {
if (!node.enabled) {
console.log("BAIL ON",node.id)
return Promise.resolve(node);
} else {
}