1 write to SessionLog
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\DebuggingSession.cs (1)
143SessionLog = sessionLog;
12 references to SessionLog
Microsoft.CodeAnalysis.Features (12)
EditAndContinue\CommittedSolution.cs (4)
333debuggingSession.SessionLog, 458using var debugInfoReaderProvider = GetMethodDebugInfoReader(debuggingSession.SessionLog, compilationOutputs, document.Project.Name); 469var result = TryReadSourceFileChecksumFromPdb(debuggingSession.SessionLog, debugInfoReader, document.FilePath, out checksum, out checksumAlgorithm); 479debuggingSession.SessionLog.Write($"Unable to determine default defaultEncoding for '{document.FilePath}': {e.Message}");
EditAndContinue\DebuggingSession.cs (7)
235SessionLog.Write($"Debugging session ended: #{Id}"); 243SessionLog.Write($"Edit session restarted (break state: {inBreakState?.ToString() ?? "null"})"); 423SessionLog.Write($"Failed to create baseline for '{projectId.DebugName}': {e.Message}", LogMessageSeverity.Error); 538solutionUpdate.Log(SessionLog, updateId); 680SessionLog.Write($"Baselines discarded: {solution.GetRequiredProject(projectId).GetLogDisplay()}."); 751await foreach (var documentId in EditSession.GetChangedDocumentsAsync(SessionLog, oldProject, newProject, cancellationToken).ConfigureAwait(false)) 887await foreach (var unmappedDocumentId in EditSession.GetChangedDocumentsAsync(SessionLog, oldProject, newProject, cancellationToken).ConfigureAwait(false))
EditAndContinue\EditSession.cs (1)
117=> DebuggingSession.SessionLog;