1 write to SessionLog
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\DebuggingSession.cs (1)
126
SessionLog
= sessionLog;
10 references to SessionLog
Microsoft.CodeAnalysis.Features (10)
EditAndContinue\CommittedSolution.cs (3)
316
? await TryGetMatchingSourceTextAsync(_debuggingSession.
SessionLog
, sourceText, document.FilePath, currentDocument, _debuggingSession.SourceTextProvider, requiredChecksum, checksumAlgorithm, cancellationToken).ConfigureAwait(false)
482
using var debugInfoReaderProvider = GetMethodDebugInfoReader(_debuggingSession.
SessionLog
, compilationOutputs, document.Project.Name);
492
return TryReadSourceFileChecksumFromPdb(_debuggingSession.
SessionLog
, debugInfoReader, document.FilePath, out requiredChecksum, out checksumAlgorithm);
EditAndContinue\DebuggingSession.cs (6)
218
SessionLog
.Write($"Debugging session ended: #{Id}");
226
SessionLog
.Write($"Edit session restarted (break state: {inBreakState?.ToString() ?? "null"})");
396
SessionLog
.Write($"Failed to create baseline for '{projectId.DebugName}': {e.Message}", LogMessageSeverity.Error);
511
solutionUpdate.Log(
SessionLog
, updateId);
709
await foreach (var documentId in EditSession.GetChangedDocumentsAsync(
SessionLog
, oldProject, newProject, cancellationToken).ConfigureAwait(false))
842
await foreach (var unmappedDocumentId in EditSession.GetChangedDocumentsAsync(
SessionLog
, oldProject, newProject, cancellationToken).ConfigureAwait(false))
EditAndContinue\EditSession.cs (1)
116
=> DebuggingSession.
SessionLog
;