1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01: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 committed by GitHub
parent c37cbb1819
commit d4b9ca443c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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