disabling sensor logger to reduce user confusion
This commit is contained in:
parent
30ac6de87a
commit
8e7596acc4
|
@ -6,7 +6,7 @@ import java.net.URL;
|
|||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
public class rusEFIVersion {
|
||||
public static final int CONSOLE_VERSION = 20230511;
|
||||
public static final int CONSOLE_VERSION = 20230611;
|
||||
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
|
||||
|
||||
public static long classBuildTimeMillis() {
|
||||
|
|
|
@ -148,7 +148,11 @@ public class ConsoleUI {
|
|||
|
||||
tabbedPane.addTab("rusEFI Online", new OnlineTab(uiContext).getContent());
|
||||
|
||||
uiContext.sensorLogger.init();
|
||||
if (false) {
|
||||
// this feature is not totally happy safer to disabke to reduce user confusion
|
||||
// https://github.com/rusefi/rusefi/issues/5292
|
||||
uiContext.sensorLogger.init();
|
||||
}
|
||||
|
||||
if (!LinkManager.isLogViewerMode(port)) {
|
||||
int selectedIndex = getConfig().getRoot().getIntProperty(TAB_INDEX, DEFAULT_TAB_INDEX);
|
||||
|
|
Loading…
Reference in New Issue