1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #3439 from node-red/remove-debug

Remove console.log when ignoring disabled module
This commit is contained in:
Nick O'Leary 2022-02-14 10:48:33 +00:00 committed by GitHub
commit da3211fee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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