3 instantiations of TraceLog
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
EditAndContinue\TraceLogTests.cs (1)
17var log = new TraceLog(5, "log", "File.log");
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\EditAndContinueWorkspaceService.cs (2)
49Log = new(2048, "EnC", "Trace.log"); 50AnalysisLog = new(1024, "EnC", "Analysis.log");
12 references to TraceLog
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
EditAndContinue\TraceLogTests.cs (1)
17var log = new TraceLog(5, "log", "File.log");
Microsoft.CodeAnalysis.Features (11)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
77private static TraceLog Log
EditAndContinue\DebuggingSession.cs (1)
548var log = EditAndContinueWorkspaceService.Log;
EditAndContinue\EditAndContinueWorkspaceService.cs (2)
29internal static readonly TraceLog Log; 30internal static readonly TraceLog AnalysisLog;
EditAndContinue\EditSession.cs (2)
799var log = EditAndContinueWorkspaceService.Log; 1108private async ValueTask LogDeltaFilesAsync(TraceLog.FileLogger log, ModuleUpdate delta, int baselineGeneration, Project oldProject, Project newProject, CancellationToken cancellationToken)
EditAndContinue\TraceLog.cs (4)
118private readonly TraceLog _traceLog; 120public FileLogger(string logDirectory, TraceLog traceLog) 285private readonly TraceLog _traceLog; 287public TestAccessor(TraceLog traceLog)
LegacySolutionEvents\ILegacySolutionEventsAggregationService.cs (1)
13using static Microsoft.CodeAnalysis.EditAndContinue.TraceLog;