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