浏览代码

fix(api-gateway): websockets calls logs severity

Karol Sójko 1 年之前
父节点
当前提交
a9b1543e20
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/api-gateway/src/Service/Http/HttpServiceProxy.ts

+ 1 - 1
packages/api-gateway/src/Service/Http/HttpServiceProxy.ts

@@ -144,7 +144,7 @@ export class HttpServiceProxy implements ServiceProxyInterface {
     }
 
     const isARequestComingFromApiGatewayAndShouldBeKeptInMinimalFormat = request.headers.connectionid !== undefined
-    this.logger.info(
+    this.logger.debug(
       `Calling websockets service: ${endpointOrMethodIdentifier}. Format is minimal: ${isARequestComingFromApiGatewayAndShouldBeKeptInMinimalFormat}`,
     )
     if (isARequestComingFromApiGatewayAndShouldBeKeptInMinimalFormat) {