9 implementations of Log
aspire-managed (1)
NuGet\NuGetLogger.cs (1)
15public void Log(NuGetLogLevel level, string data)
dotnet (1)
NugetPackageDownloader\NuGetConsoleLogger.cs (1)
13public void Log(LogLevel level, string data)
dotnet-svcutil-lib (1)
DebugLogger.cs (1)
143void NuGet.Common.ILogger.Log(NuGet.Common.LogLevel level, string data)
Microsoft.Build.NuGetSdkResolver (1)
NuGetSdkLogger.cs (1)
56public void Log(LogLevel level, string data)
Microsoft.DotNet.Build.Tasks.Packaging (1)
NuGetUtility.cs (1)
118public void Log(LogLevel level, string data) => _log.LogMessage($"{level.ToString()} - {data}");
Microsoft.TemplateEngine.Cli (1)
NuGet\CliNuGetLogger.cs (1)
11public void Log(LogLevel level, string data)
Microsoft.TemplateEngine.Edge (1)
Installers\NuGet\NuGetLogger.cs (1)
23public void Log(NuGetLogLevel level, string data)
NuGet.Common (2)
Logging\LegacyLoggerAdapter.cs (1)
15public void Log(LogLevel level, string data)
Logging\LoggerBase.cs (1)
25public virtual void Log(LogLevel level, string data)
4 references to Log
Microsoft.Build.NuGetSdkResolver (1)
NuGetSdkLogger.cs (1)
55/// <inheritdoc cref="ILogger.Log(NuGet.Common.LogLevel, string)" />
NuGet.Commands (2)
RestoreCommand\RestoreRunner.cs (1)
310log.Log(
TrustedSignersCommand\TrustedSignerActionsProvider.cs (1)
210_logger.Log(LogLevel.Minimal, string.Format(CultureInfo.CurrentCulture, logMessage, name));
NuGet.PackageManagement (1)
IDE\PackageRestoreManager.cs (1)
393packageRestoreContext.Logger.Log(LogLevel.Error, string.Format(CultureInfo.CurrentCulture, Strings.Error_HttpSource_Single, "restore", source.Source));