diff --git a/src/VisualStudio/Core/Def/DocumentOutline/DocumentOutlineHelper.cs b/src/VisualStudio/Core/Def/DocumentOutline/DocumentOutlineHelper.cs index 8bc44f57b9588..3c6341634fe2f 100644 --- a/src/VisualStudio/Core/Def/DocumentOutline/DocumentOutlineHelper.cs +++ b/src/VisualStudio/Core/Def/DocumentOutline/DocumentOutlineHelper.cs @@ -180,7 +180,7 @@ public static ImmutableArray SortDocumentSymbolData( SortOption.Location => FunctionId.DocumentOutline_SortByOrder, SortOption.Type => FunctionId.DocumentOutline_SortByType, _ => throw new NotImplementedException(), - }); + }, logLevel: LogLevel.Information); return SortDocumentSymbols(documentSymbolData, sortOption, cancellationToken); diff --git a/src/VisualStudio/Core/Def/LanguageService/AbstractLanguageService`2.VsCodeWindowManager.cs b/src/VisualStudio/Core/Def/LanguageService/AbstractLanguageService`2.VsCodeWindowManager.cs index dfad16e74b566..a84b40b2c5f1d 100644 --- a/src/VisualStudio/Core/Def/LanguageService/AbstractLanguageService`2.VsCodeWindowManager.cs +++ b/src/VisualStudio/Core/Def/LanguageService/AbstractLanguageService`2.VsCodeWindowManager.cs @@ -260,7 +260,7 @@ int IVsDocOutlineProvider.GetOutline(out IntPtr phwnd, out IOleCommandTarget? pp phwnd = _documentOutlineViewHost.Handle; ppCmdTarget = null; - Logger.Log(FunctionId.DocumentOutline_WindowOpen); + Logger.Log(FunctionId.DocumentOutline_WindowOpen, logLevel: LogLevel.Information); return VSConstants.S_OK; }