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 758c1f2 commit f6afbc7Copy full SHA for f6afbc7
src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/Formatting/RazorFormattingService.cs
@@ -92,7 +92,7 @@ public async Task<ImmutableArray<TextChange>> GetDocumentFormattingChangesAsync(
92
93
var logger = _formattingLoggerFactory.CreateLogger(documentContext.FilePath, range is null ? "Full" : "Range");
94
logger?.LogObject("Options", options);
95
- logger?.LogObject("HtmlChanges", htmlChanges);
+ logger?.LogObject("HtmlChanges", htmlChanges.SelectAsArray(e => e.ToRazorTextChange()));
96
logger?.LogObject("Range", range);
97
logger?.LogSourceText("InitialDocument", sourceText);
98
0 commit comments