31 references to Write
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
EditAndContinue\TraceLogTests.cs (2)
23log.Write("b {0} {1} 0x{2:X8}", 1, "x", 255); 25log.Write("d str={0} projectId={1} summary={2} diagnostic=`{3}`", (string?)null, projectId, ProjectAnalysisSummary.RudeEdits, diagnostic);
Microsoft.CodeAnalysis.Features (29)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (7)
564Log.Write("Syntax errors found in '{0}'", filePath); 575Log.Write("Document unchanged: '{0}'", filePath); 583Log.Write("Experimental features enabled in '{0}'", filePath); 670Log.Write("Capabilities required by '{0}': {1}", filePath, capabilities.GrantedCapabilities); 718Log.Write("Rude edit {0}:{1} '{2}' line {3}: '{4}'", diagnostic.Kind, diagnostic.SyntaxKind, filePath, lineNumber, lineText); 833Log.Write("Invalid active statement span: [{0}..{1})", oldStatementSpan.Start, oldStatementSpan.End); 883Log.Write("Invalid active statement span: [{0}..{1})", oldStatementSpan.Start, oldStatementSpan.End);
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 (5)
420EditAndContinueWorkspaceService.Log.Write("Failed to create baseline for '{0}': {1}", projectId, e.Message); 550log.Write("Solution update {0}.{1} status: {2}", updateId.SessionId.Ordinal, updateId.Ordinal, update.ModuleUpdates.Status); 554log.Write("Module update: capabilities=[{0}], types=[{1}], methods=[{2}]", 564log.Write("Solution update diagnostics: #{0} [{1}: {2}, ...]", 574log.Write("Solution update documents with rude edits: #{0} [{1}: {2}, ...]",
EditAndContinue\EditAndContinueWorkspaceService.cs (2)
152Log.Write("Session #{0} started.", sessionId.Ordinal); 181Log.Write("Session #{0} ended.", debuggingSession.Id.Ordinal);
EditAndContinue\EditSession.cs (7)
801log.Write("EmitSolutionUpdate {0}.{1}: '{2}'", updateId.SessionId.Ordinal, updateId.Ordinal, solution.FilePath); 820log.Write("EnC state of '{0}' queried: project not loaded", newProject.Id); 842log.Write("Found {0} potentially changed document(s) in project '{1}'", changedOrAddedDocuments.Count, newProject.Id); 859log.Write("Emitting update of '{0}': project not built", newProject.Id); 889log.Write("Project summary for '{0}': {1}", newProject.Id, projectSummary); 899log.Write("Document changed, added, or deleted: '{0}'", changedDocumentAnalysis.FilePath); 976log.Write("Emitting update of '{0}'", newProject.Id);
EditAndContinue\TraceLog.cs (1)
263=> Write(str, args: null);