diff --git a/src/apps.js b/src/apps.js index a75ec81a5..3e6db751b 100644 --- a/src/apps.js +++ b/src/apps.js @@ -1147,7 +1147,7 @@ function setLocation(appId, data, auditSource, callback) { if (error && error.reason === AppsError.ALREADY_EXISTS) error = getDuplicateErrorDetails(error.message, values.location, domainObject, data.portBindings, app.alternateDomains); if (error) return callback(error); - eventlog.add(eventlog.ACTION_APP_CONFIGURE, auditSource, { appId: appId, app: app, config: values, taskId: result.taskId }); + eventlog.add(eventlog.ACTION_APP_CONFIGURE, auditSource, { appId: appId, app: app, location: values.location, domain: values.domain, portBindings: values.portBindings, alternateDomains: values.alternateDomain, taskId: result.taskId }); callback(null, { taskId: result.taskId }); });