diff --git a/packages/cubejs-api-gateway/index.js b/packages/cubejs-api-gateway/index.js index 9e97a639c7917..8ebfda863467f 100644 --- a/packages/cubejs-api-gateway/index.js +++ b/packages/cubejs-api-gateway/index.js @@ -527,7 +527,11 @@ class ApiGateway { log(context, event) { const { type, ...restParams } = event; - this.logger(type, { ...restParams, ...context }); + this.logger(type, { + ...restParams, + authInfo: context.authInfo, + requestId: context.requestId + }); } }