28 references to Information
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\InlineRenameSession.cs (1)
888Logger.Log(FunctionId.Rename_TryApplyRename_WorkspaceChanged, message: null, LogLevel.Information);
Microsoft.CodeAnalysis.Features (3)
Completion\Providers\Snippets\AbstractSnippetCompletionProvider.cs (1)
33Logger.Log(FunctionId.Completion_SemanticSnippets, $"Name: {snippetIdentifier}", LogLevel.Information);
ValueTracking\ValueTrackingService.cs (2)
33using var logger = Logger.LogBlock(FunctionId.ValueTracking_TrackValueSource, cancellationToken, LogLevel.Information); 63using var logger = Logger.LogBlock(FunctionId.ValueTracking_TrackValueSource, cancellationToken, LogLevel.Information);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Diagnostics\EngineV2\DiagnosticIncrementalAnalyzer.Executor.cs (1)
141var logLevel = logTelemetry ? LogLevel.Information : LogLevel.Trace;
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
TelemetryLogger.cs (2)
158=> logMessage.LogLevel < LogLevel.Information; 165>= LogLevel.Information => LogType.UserAction,
Microsoft.CodeAnalysis.Remote.ServiceHub.UnitTests (2)
TelemetryLoggerTests.cs (2)
84Assert.Equal((level < LogLevel.Information) ? 0 : 1, logger.PostedEvents.Count); 116logger.LogBlockStart(FunctionId.Debugging_EncSession_EditSession_EmitDeltaErrorId, KeyValueLogMessage.Create(p => p.Add("test", "start"), logLevel: LogLevel.Information), blockId: 1, CancellationToken.None);
Microsoft.CodeAnalysis.Workspaces (12)
CodeActions\Operations\ApplyChangesOperation.cs (8)
68logLevel: LogLevel.Information); 92Logger.Log(FunctionId.ApplyChangesOperation_WorkspaceVersionMismatch_ApplicationFailed_IncompatibleSolutionChange, logLevel: LogLevel.Information); 116Logger.Log(FunctionId.ApplyChangesOperation_WorkspaceVersionMismatch_ApplicationFailed_IncompatibleProjectChange, logLevel: LogLevel.Information); 127Logger.Log(FunctionId.ApplyChangesOperation_WorkspaceVersionMismatch_ApplicationFailed_NoChangedDocument, logLevel: LogLevel.Information); 140Logger.Log(FunctionId.ApplyChangesOperation_WorkspaceVersionMismatch_ApplicationFailed_NoTextChange, logLevel: LogLevel.Information); 148Logger.Log(FunctionId.ApplyChangesOperation_WorkspaceVersionMismatch_ApplicationFailed_DocumentRemoved, logLevel: LogLevel.Information); 157Logger.Log(FunctionId.ApplyChangesOperation_WorkspaceVersionMismatch_ApplicationFailed_TextChangeConflict, logLevel: LogLevel.Information); 165Logger.Log(FunctionId.ApplyChangesOperation_WorkspaceVersionMismatch_ApplicationSucceeded, logLevel: LogLevel.Information);
Log\KeyValueLogMessage.cs (4)
25/// Creates a <see cref="KeyValueLogMessage"/> with default <see cref="LogLevel.Information"/>, since 28public static KeyValueLogMessage Create(Action<Dictionary<string, object?>> propertySetter, LogLevel logLevel = LogLevel.Information) 36public static KeyValueLogMessage Create(LogType kind, LogLevel logLevel = LogLevel.Information) 39public static KeyValueLogMessage Create(LogType kind, Action<Dictionary<string, object?>>? propertySetter, LogLevel logLevel = LogLevel.Information)
Microsoft.VisualStudio.LanguageServices (7)
DocumentOutline\DocumentOutlineHelper.cs (1)
183}, logLevel: LogLevel.Information);
LanguageService\AbstractLanguageService`2.VsCodeWindowManager.cs (1)
271Logger.Log(FunctionId.DocumentOutline_WindowOpen, logLevel: LogLevel.Information);
StackTraceExplorer\StackTraceExplorerCommandHandler.cs (1)
68Logger.Log(FunctionId.StackTraceToolWindow_ShowOnActivated, logLevel: LogLevel.Information);
Telemetry\TelemetryLogger.cs (2)
158=> logMessage.LogLevel < LogLevel.Information; 165>= LogLevel.Information => LogType.UserAction,
UnusedReferences\UnusedReferenceAnalysisService.cs (1)
28using var logger = Logger.LogBlock(FunctionId.UnusedReferences_GetUnusedReferences, message: null, cancellationToken, LogLevel.Information);
ValueTracking\ValueTrackingCommandHandler.cs (1)
84using var logger = Logger.LogBlock(FunctionId.ValueTracking_Command, CancellationToken.None, LogLevel.Information);