2 implementations of Reporter
Microsoft.Extensions.DotNetDeltaApplier (1)
HotReloadAgent.cs (1)
29public AgentReporter Reporter { get; } = new();
Microsoft.Extensions.DotNetDeltaApplier.Tests (1)
Mocks\TestHotReloadAgent.cs (1)
16public AgentReporter Reporter { get; set; } = new();
6 references to Reporter
Microsoft.Extensions.DotNetDeltaApplier (6)
PipeListener.cs (6)
75agent.Reporter.Report("Writing capabilities: " + agent.Capabilities, AgentMessageSeverity.Verbose); 127agent.Reporter.Report($"The runtime failed to applying the change: {e.Message}", AgentMessageSeverity.Error); 128agent.Reporter.Report("Further changes won't be applied to this process.", AgentMessageSeverity.Warning); 132var logEntries = agent.Reporter.GetAndClearLogEntries(request.ResponseLoggingLevel); 150agent.Reporter.Report($"Failed to apply static asset update: {e.Message}", AgentMessageSeverity.Error); 153var logEntries = agent.Reporter.GetAndClearLogEntries(request.ResponseLoggingLevel);