remove superfluous debug

This commit is contained in:
Girish Ramakrishnan
2020-06-01 09:40:56 -07:00
parent e2cadbfc30
commit 2fc3cdc2a2

View File

@@ -135,7 +135,6 @@ function runTask(appId, taskName, callback) {
if (error) return callback(error);
if (app.installationState !== apps.ISTATE_INSTALLED || app.runState !== apps.RSTATE_RUNNING || app.health !== apps.HEALTH_HEALTHY) {
debug(`runTask: skipped task ${taskName} because app ${app.fqdn} has state ${app.installationState} / ${app.runState}`);
return callback();
}