Pārlūkot izejas kodu

fix(api-gateway): websockets calls logs severity

Karol Sójko 1 gadu atpakaļ
vecāks
revīzija
a9b1543e20

+ 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) {