diff --git a/src/lib/services/openapi-service.ts b/src/lib/services/openapi-service.ts index fd938b1914d..89b6f5f016f 100644 --- a/src/lib/services/openapi-service.ts +++ b/src/lib/services/openapi-service.ts @@ -74,7 +74,10 @@ export class OpenApiService { const errors = validateSchema(schema, data); if (errors) { - this.logger.debug('Invalid response:', errors); + this.logger.debug( + 'Invalid response:', + JSON.stringify(errors, null, 4), + ); } Object.entries(headers).forEach(([header, value]) =>