Use Debug instead of Info

This commit is contained in:
Jack251970 2025-09-18 21:06:18 +08:00
parent 16895716e9
commit 7a5e55e5f0

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)