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

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