2 implementations of WriteMessageAsync
dotnet-svcutil-lib (2)
DebugLogger.cs (1)
63
public Task
WriteMessageAsync
(string message, bool logToUI)
Shared\Utilities\SafeLogger.cs (1)
60
public Task
WriteMessageAsync
(string message, bool logToUI)
3 references to WriteMessageAsync
dotnet-svcutil-lib (3)
CommandProcessorOptions.cs (2)
1014
this.Logger?.
WriteMessageAsync
($"Bootstrap directory '{this.BootstrapPath}' ...", logToUI: false);
1018
this.Logger?.
WriteMessageAsync
($"Deleting bootstrap directory '{this.BootstrapPath}' ...", logToUI: false);
Shared\Utilities\SafeLogger.cs (1)
64
return this.logger.
WriteMessageAsync
(message, logToUI);