From 3e474767d135f8e5b439fbe077e5f2ab8cf7363e Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sun, 11 Oct 2015 13:45:02 -0700 Subject: [PATCH] print the values otherwise it gets very confusing --- src/apptask.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apptask.js b/src/apptask.js index 8d182e120..da5d2b2f6 100644 --- a/src/apptask.js +++ b/src/apptask.js @@ -524,7 +524,7 @@ function waitForDnsPropagation(app, callback) { // updates the app object and the database function updateApp(app, values, callback) { - debugApp(app, 'installationState: %s progress: %s', app.installationState, app.installationProgress); + debugApp(app, 'updating app with values: %j', values); appdb.update(app.id, values, function (error) { if (error) return callback(error);