1 write to Log
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\EditAndContinueWorkspaceService.cs (1)
49
Log
= new(2048, "EnC", "Trace.log");
14 references to Log
Microsoft.CodeAnalysis.Features (14)
EditAndContinue\CommittedSolution.cs (7)
417
EditAndContinueWorkspaceService.
Log
.Write("Source file of project '{0}' doesn't match output PDB: PDB '{1}' (assembly: '{2}') not found", projectName, compilationOutputs.PdbDisplayPath, compilationOutputs.AssemblyDisplayPath);
424
EditAndContinueWorkspaceService.
Log
.Write("Source file of project '{0}' doesn't match output PDB: error opening PDB '{1}' (assembly: '{2}'): {3}", projectName, compilationOutputs.PdbDisplayPath, compilationOutputs.AssemblyDisplayPath, e.Message);
457
EditAndContinueWorkspaceService.
Log
.Write("Checksum differs for source file '{0}'", sourceFilePath);
464
EditAndContinueWorkspaceService.
Log
.Write("Error calculating checksum for source file '{0}': '{1}'", sourceFilePath, e.Message);
504
EditAndContinueWorkspaceService.
Log
.Write("Source '{0}' doesn't match output PDB: no document", sourceFilePath);
512
EditAndContinueWorkspaceService.
Log
.Write("Source '{0}' doesn't match PDB: unknown checksum alg", sourceFilePath);
519
EditAndContinueWorkspaceService.
Log
.Write("Source '{0}' doesn't match output PDB: error reading symbols: {1}", sourceFilePath, e.Message);
EditAndContinue\DebuggingSession.cs (2)
420
EditAndContinueWorkspaceService.
Log
.Write("Failed to create baseline for '{0}': {1}", projectId, e.Message);
548
var log = EditAndContinueWorkspaceService.
Log
;
EditAndContinue\EditAndContinueWorkspaceService.cs (4)
55
Log
.SetLogDirectory(logDir);
81
Log
.SetLogDirectory(logDirectory ?? GetLogDirectory());
152
Log
.Write("Session #{0} started.", sessionId.Ordinal);
181
Log
.Write("Session #{0} ended.", debuggingSession.Id.Ordinal);
EditAndContinue\EditSession.cs (1)
799
var log = EditAndContinueWorkspaceService.
Log
;