We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9544806 commit 48b1294Copy full SHA for 48b1294
src/Microsoft.OpenApi.Hidi/OpenApiService.cs
@@ -101,7 +101,7 @@ CancellationToken cancellationToken
101
foreach (var error in context.Errors)
102
{
103
logger.LogError("OpenApi Parsing error: {message}", error.ToString());
104
- errorReport.AppendLine(error.ToString());
+ errorReport.AppendLine(error);
105
}
106
logger.LogError($"{stopwatch.ElapsedMilliseconds}ms: OpenApi Parsing errors {string.Join(Environment.NewLine, context.Errors.Select(e => e.Message).ToArray())}");
107
0 commit comments