1 write to SessionLog
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\DebuggingSession.cs (1)
143SessionLog = sessionLog;
11 references to SessionLog
Microsoft.CodeAnalysis.Features (11)
EditAndContinue\CommittedSolution.cs (3)
332? await TryGetMatchingSourceTextAsync(debuggingSession.SessionLog, sourceText, document.FilePath, currentDocument, debuggingSession.SourceTextProvider, requiredChecksum, checksumAlgorithm, cancellationToken).ConfigureAwait(false) 444using var debugInfoReaderProvider = GetMethodDebugInfoReader(debuggingSession.SessionLog, compilationOutputs, document.Project.Name); 454return TryReadSourceFileChecksumFromPdb(debuggingSession.SessionLog, debugInfoReader, document.FilePath, out requiredChecksum, out checksumAlgorithm);
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;