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)
295
reporter.
Warn
(status.FailureMessage);
350
reporter.
Warn
("One or more certificates might be in an invalid state. We will try to access the certificate key " +
366
reporter.
Warn
("Trusting the HTTPS development certificate was requested. If the certificate is not " +
375
reporter.
Warn
("Trusting the HTTPS development certificate was requested. A confirmation prompt will be displayed " +
381
reporter.
Warn
("Trusting the HTTPS development certificate was requested. " +
426
reporter.
Warn
("There was an error exporting the HTTPS developer certificate to a file.");
430
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.");
434
reporter.
Warn
("There was an error trusting the HTTPS developer certificate. It will be trusted by some clients but not by others.");
437
reporter.
Warn
("There was an error trusting the HTTPS developer certificate.");
440
reporter.
Warn
("The user cancelled the trust step.");
ReporterEventListener.cs (1)
28
EventLevel.Warning => _reporter.
Warn
,