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
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 0 additions and 1 deletions

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 {
}