2 implementations of Warn
dotnet-dev-certs (2)
src\aspnetcore\src\Tools\Shared\CommandLine\ConsoleReporter.cs (1)
54public virtual void Warn(string message)
src\aspnetcore\src\Tools\Shared\CommandLine\NullReporter.cs (1)
23public void Warn(string message)
11 references to Warn
dotnet-dev-certs (11)
Program.cs (10)
323reporter.Warn(status.FailureMessage); 388reporter.Warn("One or more certificates might be in an invalid state. We will try to access the certificate key " + 404reporter.Warn("Trusting the HTTPS development certificate was requested. If the certificate is not " + 413reporter.Warn("Trusting the HTTPS development certificate was requested. A confirmation prompt will be displayed " + 419reporter.Warn("Trusting the HTTPS development certificate was requested. " + 464reporter.Warn("There was an error exporting the HTTPS developer certificate to a file."); 468reporter.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."); 472reporter.Warn("There was an error trusting the HTTPS developer certificate. It will be trusted by some clients but not by others."); 475reporter.Warn("There was an error trusting the HTTPS developer certificate."); 478reporter.Warn("The user cancelled the trust step.");
ReporterEventListener.cs (1)
28EventLevel.Warning => _reporter.Warn,