diff --git a/i2p.plugins.firefox.torrent b/i2p.plugins.firefox.torrent index f24abbd..3b55bc7 100644 Binary files a/i2p.plugins.firefox.torrent and b/i2p.plugins.firefox.torrent differ diff --git a/scripts/build.number b/scripts/build.number index a915660..d0808c0 100644 --- a/scripts/build.number +++ b/scripts/build.number @@ -1,3 +1,3 @@ #Build Number for ANT. Do not edit! -#Thu Dec 22 04:35:10 UTC 2022 -build.number=362 +#Thu Dec 22 04:36:10 UTC 2022 +build.number=363 diff --git a/src/java/net/i2p/i2pfirefox/I2PBrowserPlugin.java b/src/java/net/i2p/i2pfirefox/I2PBrowserPlugin.java index 7b02512..8e10531 100644 --- a/src/java/net/i2p/i2pfirefox/I2PBrowserPlugin.java +++ b/src/java/net/i2p/i2pfirefox/I2PBrowserPlugin.java @@ -38,6 +38,10 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp { } private void downloadInBackground() { Logger threadLogger = Logger.getLogger("browserlauncherupdatethread"); + fh = new FileHandler(logFile().toString()); + threadLogger.addHandler(fh); + SimpleFormatter formatter = new SimpleFormatter(); + fh.setFormatter(formatter); got = downloadTorrent(); while (!got) { threadLogger.info("Working to download updates in the background"); @@ -75,6 +79,8 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp { "Starting up profile manager systray", null); } catch (Exception e) { logger.info(e.toString()); + cam.notify(this, ClientAppState.START_FAILED, + "Error starting profile manager systray", e); } }