diff --git a/src/apps.js b/src/apps.js index b53c67a97..afb86d0a0 100644 --- a/src/apps.js +++ b/src/apps.js @@ -640,7 +640,7 @@ function scheduleTask(appId, installationState, taskId, callback) { assert.strictEqual(typeof callback, 'function'); appTaskManager.scheduleTask(appId, taskId, function (error) { - debug(`scheduleTask: task ${taskId} of $${appId} completed`); + debug(`scheduleTask: task ${taskId} of ${appId} completed`); if (error && (error.code === tasks.ECRASHED || error.code === tasks.ESTOPPED)) { // if task crashed, update the error debug(`Apptask crashed/stopped: ${error.message}`); let boxError = new BoxError(BoxError.TASK_ERROR, error.message);