11 implementations of LogInformation
aspire-managed (1)
NuGet\NuGetLogger.cs (1)
38public void LogInformation(string data) => Log(NuGetLogLevel.Information, data);
dotnet (1)
NugetPackageDownloader\NuGetConsoleLogger.cs (1)
65public void LogInformation(string data)
dotnet-svcutil-lib (1)
DebugLogger.cs (1)
103void NuGet.Common.ILogger.LogInformation(string data)
Microsoft.Build.NuGetSdkResolver (1)
NuGetSdkLogger.cs (1)
135public void LogInformation(string data) => Log(LogLevel.Information, data);
Microsoft.DotNet.Build.Tasks.Packaging (1)
NuGetUtility.cs (1)
130public void LogInformation(string data) => _log.LogMessage(data);
Microsoft.TemplateEngine.Cli (1)
NuGet\CliNuGetLogger.cs (1)
51public void LogInformation(string data)
Microsoft.TemplateEngine.Edge (1)
Installers\NuGet\NuGetLogger.cs (1)
63public void LogInformation(string data)
NuGet.CommandLine.XPlat (1)
Utility\CommandOutputLogger.cs (1)
44public override void LogInformation(string data)
NuGet.Common (2)
Logging\LegacyLoggerAdapter.cs (1)
78public abstract void LogInformation(string data);
Logging\LoggerBase.cs (1)
53public virtual void LogInformation(string data)
NuGet.PackageManagement (1)
LoggerAdapter.cs (1)
34public override void LogInformation(string data)
67 references to LogInformation
Microsoft.Build.NuGetSdkResolver (1)
NuGetSdkLogger.cs (1)
134/// <inheritdoc cref="ILogger.LogInformation(string)" />
NuGet.Build.Tasks (1)
RestoreTask.cs (1)
184log.LogInformation(Strings.Log_RestoreNoCacheInformation);
NuGet.CommandLine.XPlat (14)
Commands\LocalsCommand.cs (1)
68logger.LogInformation,
Commands\Package\Update\PackageUpdateCommandRunner.cs (5)
71logger.LogInformation(Format.PackageUpdate_UpdatingVulnerablePackages(args.Project)); 75logger.LogInformation(Format.PackageUpdate_UpdatingOutdatedPackages(args.Project)); 105logger.LogInformation($" {projectName}:"); 111logger.LogInformation($" {Format.PackageUpdate_UpdatedMessage(packageResult.Package.Id, packageResult.Package.CurrentVersion.ToShortString(), packageResult.Package.NewVersion.ToShortString())}"); 121logger.LogInformation("");
Commands\PackageReferenceCommands\AddPackageReferenceCommandRunner.cs (3)
33packageReferenceArgs.Logger.LogInformation(string.Format(CultureInfo.CurrentCulture, 247packageReferenceArgs.Logger.LogInformation(string.Format(CultureInfo.CurrentCulture, 261packageReferenceArgs.Logger.LogInformation(string.Format(CultureInfo.CurrentCulture,
Commands\PackageReferenceCommands\RemovePackageReferenceCommandRunner.cs (1)
18packageReferenceArgs.Logger.LogInformation(string.Format(CultureInfo.CurrentCulture,
Utility\MSBuildAPIUtility.cs (4)
450Logger.LogInformation(string.Format(CultureInfo.CurrentCulture, Strings.Info_AddPkgAdded, libraryDependency.Name, packageVersion, itemGroup.ContainingProject.FullPath 466Logger.LogInformation(string.Format(CultureInfo.CurrentCulture, Strings.Info_AddPkgAdded, libraryDependency.Name, packageVersion, itemGroup.ContainingProject.FullPath)); 481Logger.LogInformation(string.Format(CultureInfo.CurrentCulture, Strings.Info_AddPkgCPM, libraryDependency.Name, itemGroup.ContainingProject.FullPath, project.GetPropertyValue(DirectoryPackagesPropsPathPropertyName))); 601Logger.LogInformation(string.Format(CultureInfo.CurrentCulture,
NuGet.Commands (28)
ClientCertificatesCommand\AddClientCertRunner.cs (1)
72getLogger().LogInformation(string.Format(CultureInfo.CurrentCulture, Strings.ClientCertificateSuccessfullyAdded, args.PackageSource));
ClientCertificatesCommand\ListClientCertRunner.cs (3)
29getLogger().LogInformation(Strings.NoClientCertificates); 35getLogger().LogInformation(Strings.RegsiteredClientCertificates); 36getLogger().LogInformation(string.Empty);
ClientCertificatesCommand\RemoveClientCertRunner.cs (2)
25getLogger().LogInformation(string.Format(CultureInfo.CurrentCulture, 33getLogger().LogInformation(string.Format(CultureInfo.CurrentCulture, Strings.ClientCertificateSuccessfullyRemoved, args.PackageSource));
ClientCertificatesCommand\UpdateClientCertRunner.cs (1)
77getLogger().LogInformation(string.Format(CultureInfo.CurrentCulture, Strings.ClientCertificateSuccessfullyUpdated, args.PackageSource));
RestoreCommand\OriginalCaseGlobalPackageFolder.cs (1)
124_request.Log.LogInformation(string.Format(
RestoreCommand\RequestFactory\NoOpRestoreResult.cs (2)
46log.LogInformation(string.Format(CultureInfo.CurrentCulture, 55log.LogInformation(string.Format(CultureInfo.CurrentCulture,
RestoreCommand\RestoreResult.cs (5)
247log.LogInformation(string.Format(CultureInfo.CurrentCulture, 257log.LogInformation(string.Format(CultureInfo.CurrentCulture, 270log.LogInformation(string.Format(CultureInfo.CurrentCulture, 276log.LogInformation(string.Format(CultureInfo.CurrentCulture, 312log.LogInformation(string.Format(CultureInfo.CurrentCulture,
RestoreCommand\RestoreSummary.cs (1)
211logger.LogInformation(string.Empty);
RestoreCommand\Utility\BuildAssetsUtils.cs (1)
73log.LogInformation(string.Format(CultureInfo.CurrentCulture, Strings.Log_GeneratingMsBuildFile, file.Path));
SignCommand\SignCommandRunner.cs (8)
54signArgs.Logger.LogInformation(Environment.NewLine); 55signArgs.Logger.LogInformation(Strings.SignCommandDisplayCertificate); 56signArgs.Logger.LogInformation(CertificateUtility.X509Certificate2ToString(cert, HashAlgorithmName.SHA256)); 60signArgs.Logger.LogInformation(Strings.SignCommandDisplayTimestamper); 61signArgs.Logger.LogInformation(signArgs.Timestamper); 66signArgs.Logger.LogInformation(Strings.SignCommandOutputPath); 67signArgs.Logger.LogInformation(signArgs.OutputDirectory); 163logger.LogInformation(Strings.SignCommandSuccess);
VerifyCommand\VerifyCommandRunner.cs (3)
128logger.LogInformation($"{packagePath}{Environment.NewLine}"); 144logger.LogInformation(string.Format(CultureInfo.CurrentCulture, Strings.VerifyCommand_FinishedWithErrors, errors, warnings)); 154logger.LogInformation(Environment.NewLine + string.Format(CultureInfo.CurrentCulture, Strings.VerifyCommand_Success, packageIdentity.ToString()));
NuGet.Credentials (1)
PluginCredentialProvider.cs (1)
274_logger.LogInformation($"{process.ProcessName}: {e.Data}");
NuGet.Packaging (9)
PackageExtractor.cs (2)
575logger.LogInformation(StringFormatter.Log_InstalledPackage(packageIdentity.Id, packageIdentity.Version.OriginalVersion!, source, contentHash, targetPath)); 879logger.LogInformation(StringFormatter.Log_InstalledPackage(packageIdentity.Id, packageIdentity.Version.OriginalVersion!, packageDownloader.Source, contentHash, targetPath));
Signing\TrustStore\X509TrustStore.cs (7)
112logger.LogInformation( 126logger.LogInformation( 135logger.LogInformation(Strings.ChainBuilding_UsingNoCertificateBundle); 147logger.LogInformation( 156logger.LogInformation(Strings.ChainBuilding_UsingNoCertificateBundle); 171logger.LogInformation(Strings.ChainBuilding_UsingDefaultTrustStoreForCodeSigning); 175logger.LogInformation(Strings.ChainBuilding_UsingDefaultTrustStoreForTimestamping);
NuGet.ProjectModel (1)
ProjectLockFile\PackagesLockFileFormat.cs (1)
82log.LogInformation(string.Format(CultureInfo.CurrentCulture,
NuGet.Protocol (12)
HttpSource\HttpRetryHandler.cs (4)
139log.LogInformation(" " + string.Format( 199log.LogInformation(" " + string.Format( 218log.LogInformation(" " + string.Format( 283log.LogInformation(string.Format(
HttpSource\HttpSource.cs (1)
90log.LogInformation(string.Format(CultureInfo.InvariantCulture, " " + Strings.Http_RequestLog, "CACHE", request.Uri));
Plugins\RequestHandlers\LogRequestHandler.cs (1)
155_logger.LogInformation(request.Message);
Resources\PackageUpdateResource.cs (6)
193log.LogInformation(string.Format(CultureInfo.CurrentCulture, 200log.LogInformation(Strings.DeleteCommandCanceled); 366log.LogInformation(string.Format(CultureInfo.CurrentCulture, 385log.LogInformation(Strings.PushCommandPackagePushed); 493logger.LogInformation(string.Format( 626logger?.LogInformation(advertiseDescription);