diff --git a/src/updater.js b/src/updater.js index 9ca296a25..cf3c9cf42 100644 --- a/src/updater.js +++ b/src/updater.js @@ -195,7 +195,7 @@ function updateToLatest(auditSource, callback) { let task = tasks.startTask(tasks.TASK_UPDATE, [ boxUpdateInfo ]); task.on('error', (error) => callback(new UpdaterError(UpdaterError.INTERNAL_ERROR, error))); task.on('start', (taskId) => { - eventlog.add(eventlog.ACTION_UPDATE, auditSource, { taskId }); + eventlog.add(eventlog.ACTION_UPDATE, auditSource, { taskId, boxUpdateInfo }); callback(null, taskId); }); task.on('finish', (error) => {