From 05d323038586333e9b6cdad383a75968b1705f03 Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Tue, 17 Sep 2024 18:58:30 +0200 Subject: [PATCH] Add network type --- src/js/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/main.js b/src/js/main.js index 3d5585bb869..2202cf38c19 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -100,6 +100,7 @@ function startProcess() { gui_log(i18n.getMessage('infoVersionConfigurator', { configuratorVersion: CONFIGURATOR.getDisplayVersion() })); if (navigator.connection) { + console.log(`[ISP] Network connection type: ${navigator.connection.type}`); console.log(`[ISP] Effective network type: ${navigator.connection.effectiveType}`); console.log(`[ISP] Downlink Speed: ${navigator.connection.downlink}Mb/s`); console.log(`[ISP] Round Trip Time: ${navigator.connection.rtt}ms`);