2 implementations of WriteErrorAsync
dotnet-svcutil-lib (2)
DebugLogger.cs (1)
68public Task WriteErrorAsync(string errorMessage, bool logToUI)
Shared\Utilities\SafeLogger.cs (1)
42public Task WriteErrorAsync(string errorMessage, bool logToUI)
2 references to WriteErrorAsync
dotnet-svcutil-lib (2)
Shared\Utilities\SafeLogger.cs (1)
46return this.logger.WriteErrorAsync(errorMessage, logToUI);
Tool.cs (1)
410await options.Logger.WriteErrorAsync(exMsg, logToUI: false).ConfigureAwait(false);