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