1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-23 13:46:45 +02:00

feat: change log level for OpenAPI to debug (#1895)

This commit is contained in:
Gastón Fournier 2022-08-08 10:27:53 +02:00
parent d567a6c8f4
commit 2824b24565
No known key found for this signature in database
GPG Key ID: BC3E6CD5E81633B8

View File

@ -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);