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)
296reporter.Warn(status.FailureMessage); 351reporter.Warn("One or more certificates might be in an invalid state. We will try to access the certificate key " + 367reporter.Warn("Trusting the HTTPS development certificate was requested. If the certificate is not " + 376reporter.Warn("Trusting the HTTPS development certificate was requested. A confirmation prompt will be displayed " + 382reporter.Warn("Trusting the HTTPS development certificate was requested. " + 427reporter.Warn("There was an error exporting the HTTPS developer certificate to a file."); 431reporter.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."); 435reporter.Warn("There was an error trusting the HTTPS developer certificate. It will be trusted by some clients but not by others."); 438reporter.Warn("There was an error trusting the HTTPS developer certificate."); 441reporter.Warn("The user cancelled the trust step.");
ReporterEventListener.cs (1)
28EventLevel.Warning => _reporter.Warn,