Skip to content

Commit 56a645c

Browse files
committed
Add exception information
1 parent c62a687 commit 56a645c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Flow.Launcher.Core/Plugin/PluginManager.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,8 +340,9 @@ public static async Task<List<QuickSwitchResult>> QueryQuickSwitchForPluginAsync
340340
// null will be fine since the results will only be added into queue if the token hasn't been cancelled
341341
return null;
342342
}
343-
catch (Exception)
343+
catch (Exception e)
344344
{
345+
API.LogException(ClassName, $"Failed to query quick switch for plugin: {metadata.Name}", e);
345346
return null;
346347
}
347348
return results;

0 commit comments

Comments
 (0)