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

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

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