Merge pull request #3993 from Flow-Launcher/improve_log

Use Debug instead of Info
This commit is contained in:
Jack Ye 2025-09-19 13:27:40 +08:00 committed by GitHub
commit 89fca85ca8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -75,7 +75,7 @@ namespace Flow.Launcher.Core.ExternalPlugins
}
catch (OperationCanceledException) when (token.IsCancellationRequested)
{
API.LogInfo(ClassName, $"Fetching from {ManifestFileUrl} was cancelled by caller.");
API.LogDebug(ClassName, $"Fetching from {ManifestFileUrl} was cancelled by caller.");
return null;
}
catch (TaskCanceledException)