diff --git a/Flow.Launcher/Helper/QuickLookHelper.cs b/Flow.Launcher/Helper/QuickLookHelper.cs index 1003e731f..136f86cdb 100644 --- a/Flow.Launcher/Helper/QuickLookHelper.cs +++ b/Flow.Launcher/Helper/QuickLookHelper.cs @@ -96,9 +96,10 @@ namespace Flow.Launcher.Helper return serverInstances; } - catch (TimeoutException) + catch (TimeoutException e) { client.Close(); + Log.Exception($"{nameof(QuickLookHelper)}", "QuickLook connection timeout", e); return 0; } }