Quellcode durchsuchen

fix(api-gateway): websockets calls logs severity

Karol Sójko vor 1 Jahr
Ursprung
Commit
a9b1543e20
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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) {