Fix debug

This commit is contained in:
Girish Ramakrishnan
2020-01-28 13:51:03 -08:00
parent 3929b3ca0a
commit 84cffe8888

View File

@@ -149,7 +149,7 @@ 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 run state ${app.installationState}`);
debug(`runTask: skipped task ${taskName} because app ${app.fqdn} has state ${app.installationState} / ${app.runState}`);
return callback();
}