1 write to SessionLog
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\DebuggingSession.cs (1)
144SessionLog = sessionLog;
11 references to SessionLog
Microsoft.CodeAnalysis.Features (11)
EditAndContinue\CommittedSolution.cs (3)
344? await TryGetMatchingSourceTextAsync(_debuggingSession.SessionLog, sourceText, document.FilePath, currentDocument, _debuggingSession.SourceTextProvider, requiredChecksum, checksumAlgorithm, cancellationToken).ConfigureAwait(false) 517using var debugInfoReaderProvider = GetMethodDebugInfoReader(_debuggingSession.SessionLog, compilationOutputs, document.Project.Name); 527return TryReadSourceFileChecksumFromPdb(_debuggingSession.SessionLog, debugInfoReader, document.FilePath, out requiredChecksum, out checksumAlgorithm);
EditAndContinue\DebuggingSession.cs (7)
236SessionLog.Write($"Debugging session ended: #{Id}"); 244SessionLog.Write($"Edit session restarted (break state: {inBreakState?.ToString() ?? "null"})"); 424SessionLog.Write($"Failed to create baseline for '{projectId.DebugName}': {e.Message}", LogMessageSeverity.Error); 539solutionUpdate.Log(SessionLog, updateId); 681SessionLog.Write($"Baselines discarded: {solution.GetRequiredProject(projectId).GetLogDisplay()}."); 752await foreach (var documentId in EditSession.GetChangedDocumentsAsync(SessionLog, oldProject, newProject, cancellationToken).ConfigureAwait(false)) 888await foreach (var unmappedDocumentId in EditSession.GetChangedDocumentsAsync(SessionLog, oldProject, newProject, cancellationToken).ConfigureAwait(false))
EditAndContinue\EditSession.cs (1)
117=> DebuggingSession.SessionLog;