2 implementations of Warn
dotnet-dev-certs (2)
src\Tools\Shared\CommandLine\ConsoleReporter.cs (1)
54public virtual void Warn(string message)
src\Tools\Shared\CommandLine\NullReporter.cs (1)
23public void Warn(string message)
11 references to Warn
dotnet-dev-certs (11)
Program.cs (10)
295reporter.Warn(status.FailureMessage); 350reporter.Warn("One or more certificates might be in an invalid state. We will try to access the certificate key " + 366reporter.Warn("Trusting the HTTPS development certificate was requested. If the certificate is not " + 375reporter.Warn("Trusting the HTTPS development certificate was requested. A confirmation prompt will be displayed " + 381reporter.Warn("Trusting the HTTPS development certificate was requested. " + 426reporter.Warn("There was an error exporting the HTTPS developer certificate to a file."); 430reporter.Warn("There was an error exporting the HTTPS developer certificate to a file. Please create the target directory before exporting. Choose permissions carefully when creating it."); 434reporter.Warn("There was an error trusting the HTTPS developer certificate. It will be trusted by some clients but not by others."); 437reporter.Warn("There was an error trusting the HTTPS developer certificate."); 440reporter.Warn("The user cancelled the trust step.");
ReporterEventListener.cs (1)
28EventLevel.Warning => _reporter.Warn,