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)
94agent.Reporter.Report("Writing capabilities: " + agent.Capabilities, AgentMessageSeverity.Verbose); 148agent.Reporter.Report($"The runtime failed to applying the change: {e.Message}", AgentMessageSeverity.Error); 149agent.Reporter.Report("Further changes won't be applied to this process.", AgentMessageSeverity.Warning); 153var logEntries = agent.Reporter.GetAndClearLogEntries(request.ResponseLoggingLevel); 170agent.Reporter.Report($"Failed to apply static asset update: {e.Message}", AgentMessageSeverity.Error); 173var logEntries = agent.Reporter.GetAndClearLogEntries(request.ResponseLoggingLevel);