2 implementations of Error
dotnet-dev-certs (2)
src\Tools\Shared\CommandLine\ConsoleReporter.cs (1)
52public virtual void Error(string message)
src\Tools\Shared\CommandLine\NullReporter.cs (1)
26public void Error(string message)
8 references to Error
dotnet-dev-certs (8)
Program.cs (6)
262reporter.Error("There was an error trying to clean HTTPS development certificates on this machine."); 263reporter.Error(e.Message); 388reporter.Error($"Unknown key format '{exportFormat.Value()}'."); 418reporter.Error("There was an error creating the HTTPS developer certificate."); 421reporter.Error("There was an error saving the HTTPS developer certificate to the current user personal certificate store."); 439reporter.Error("Something went wrong. The HTTPS developer certificate could not be created.");
ReporterEventListener.cs (2)
26EventLevel.Critical => _reporter.Error, 27EventLevel.Error => _reporter.Error,