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