diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs index acf863bf0..d1551c598 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/ChromiumBookmarkLoader.cs @@ -200,7 +200,14 @@ public abstract class ChromiumBookmarkLoader : IBookmarkLoader } // Delete temporary file - try { File.Delete(tempDbPath); } catch { /* Ignore */ } + try + { + File.Delete(tempDbPath); + } + catch (Exception ex) + { + Log.Exception($"Failed to delete temporary favicon DB: {tempDbPath}", ex); + } } catch (Exception ex) { diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs index e638fa825..59fca63ce 100644 --- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs +++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/FirefoxBookmarkLoader.cs @@ -85,7 +85,14 @@ public abstract class FirefoxBookmarkLoaderBase : IBookmarkLoader } // Delete temporary file - try { File.Delete(tempDbPath); } catch { /* Ignore */ } + try + { + File.Delete(tempDbPath); + } + catch (Exception ex) + { + Log.Exception($"Failed to delete temporary favicon DB: {tempDbPath}", ex); + } } catch (Exception ex) { @@ -159,7 +166,14 @@ public abstract class FirefoxBookmarkLoaderBase : IBookmarkLoader } // Delete temporary file - try { File.Delete(tempDbPath); } catch { /* Ignore */ } + try + { + File.Delete(tempDbPath); + } + catch (Exception ex) + { + Log.Exception($"Failed to delete temporary favicon DB: {tempDbPath}", ex); + } } catch (Exception ex) {