From d4b9ca443c8fd88026660785d5a49d4b425a9500 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Mon, 8 Aug 2022 10:27:53 +0200 Subject: [PATCH] feat: change log level for OpenAPI to debug (#1895) --- src/lib/services/openapi-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/services/openapi-service.ts b/src/lib/services/openapi-service.ts index 97c5d125a2..ee99a0ec8e 100644 --- a/src/lib/services/openapi-service.ts +++ b/src/lib/services/openapi-service.ts @@ -73,7 +73,7 @@ export class OpenApiService { const errors = validateSchema(schema, data); if (errors) { - this.logger.warn('Invalid response:', errors); + this.logger.debug('Invalid response:', errors); } res.status(status).json(data);