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