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