We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e8ff3 commit 1790c39Copy full SHA for 1790c39
1 file changed
src/UniGetUI.PackageEngine.Managers.WinGet/Helpers/WinGetPkgOperationHelper.cs
@@ -160,8 +160,9 @@ protected override OperationVeredict _getOperationResult(
160
161
if (uintCode is 0x8A15002B)
162
{
163
- if (Settings.Get("IgnoreUpdatesNotApplicable")) {
164
- Logger.Info("Ignoring update " + package.Name + " as the update is not applicable to the platform");
+ if (Settings.Get("IgnoreUpdatesNotApplicable"))
+ {
165
+ Logger.Warn($"Ignoring update {package.Id} as the update is not applicable to the platform, and the user has enabled IgnoreUpdatesNotApplicable");
166
IgnoredUpdatesDatabase.Add(IgnoredUpdatesDatabase.GetIgnoredIdForPackage(package), package.VersionString);
167
return OperationVeredict.Success;
168
}
0 commit comments