We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c62a687 commit 56a645cCopy full SHA for 56a645c
Flow.Launcher.Core/Plugin/PluginManager.cs
@@ -340,8 +340,9 @@ public static async Task<List<QuickSwitchResult>> QueryQuickSwitchForPluginAsync
340
// null will be fine since the results will only be added into queue if the token hasn't been cancelled
341
return null;
342
}
343
- catch (Exception)
+ catch (Exception e)
344
{
345
+ API.LogException(ClassName, $"Failed to query quick switch for plugin: {metadata.Name}", e);
346
347
348
return results;
0 commit comments