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

remove debug msg from inject close

This commit is contained in:
Dave Conway-Jones 2022-01-10 20:22:20 +00:00
parent 2cad42870e
commit f77d161643
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF

View File

@ -144,10 +144,8 @@ module.exports = function(RED) {
}
if (this.interval_id != null) {
clearInterval(this.interval_id);
this.debug(RED._("inject.stopped"));
} else if (this.cronjob != null) {
this.cronjob.stop();
this.debug(RED._("inject.stopped"));
delete this.cronjob;
}
};