Implemented interface member:
method
Log
NuGet.Common.ILogger.Log(NuGet.Common.LogLevel, System.String)
9 references to Log
Microsoft.Build.NuGetSdkResolver (9)
NuGetSdkLogger.cs (9)
110public void Log(ILogMessage message) => Log(message.Level, message.Message); 115Log(level, data); 129public void LogDebug(string data) => Log(LogLevel.Debug, data); 132public void LogError(string data) => Log(LogLevel.Error, data); 135public void LogInformation(string data) => Log(LogLevel.Information, data); 138public void LogInformationSummary(string data) => Log(LogLevel.Information, data); 141public void LogMinimal(string data) => Log(LogLevel.Minimal, data); 144public void LogVerbose(string data) => Log(LogLevel.Verbose, data); 147public void LogWarning(string data) => Log(LogLevel.Warning, data);