remove extra $

This commit is contained in:
Girish Ramakrishnan
2020-05-22 16:56:01 -07:00
parent 7efb57c8da
commit b39261c8cf

View File

@@ -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);