Browse Source

Change update check to warning

pull/5/head
Ionite 1 year ago
parent
commit
e8be4922a5
No known key found for this signature in database
  1. 3
      StabilityMatrix/Models/Packages/BaseGitPackage.cs

3
StabilityMatrix/Models/Packages/BaseGitPackage.cs

@ -11,7 +11,6 @@ using StabilityMatrix.Helper;
using StabilityMatrix.Helper.Cache;
using StabilityMatrix.Python;
using StabilityMatrix.Services;
using ApiException = Refit.ApiException;
namespace StabilityMatrix.Models.Packages;
@ -189,7 +188,7 @@ public abstract class BaseGitPackage : BasePackage
}
catch (ApiException e)
{
Logger.Error(e, "Failed to check for updates");
Logger.Warn(e, "Failed to check for package updates");
return false;
}
}

Loading…
Cancel
Save