From 5d297c1f19025697775725d58907e829a6bcd4eb Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Thu, 4 Sep 2025 22:36:43 +1000 Subject: [PATCH] update to log info for plugin version requirement failure --- Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs b/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs index 0f35c8825..1e845498c 100644 --- a/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs +++ b/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs @@ -88,7 +88,7 @@ namespace Flow.Launcher.Core.ExternalPlugins return false; } - API.LogDebug(ClassName, $"Plugin {plugin.Name} requires minimum Flow Launcher version {plugin.MinimumAppVersion}, " + API.LogInfo(ClassName, $"Plugin {plugin.Name} requires minimum Flow Launcher version {plugin.MinimumAppVersion}, " + $"but current version is {Constant.Version}. Plugin excluded from manifest."); return false;