diff --git a/FSUIPC/Fsuipc2Cache.cs b/FSUIPC/Fsuipc2Cache.cs index 4a792184..d9fa91ca 100644 --- a/FSUIPC/Fsuipc2Cache.cs +++ b/FSUIPC/Fsuipc2Cache.cs @@ -92,7 +92,9 @@ public bool Connect() } else if (ex.FSUIPCErrorCode == FSUIPCError.FSUIPC_ERR_NOFS) { - Log.Instance.log("No FSUIPC found.", LogSeverity.Debug); + // We can enable this again once we have throttling for the log in place + // But it doesn't make sense to log this every 10s + // Log.Instance.log("No FSUIPC found.", LogSeverity.Debug); } else { diff --git a/MobiFlight/ExecutionManager.cs b/MobiFlight/ExecutionManager.cs index c9c508c8..b2452e76 100644 --- a/MobiFlight/ExecutionManager.cs +++ b/MobiFlight/ExecutionManager.cs @@ -1085,11 +1085,9 @@ void AutoConnectTimer_TickAsync(object sender, EventArgs e) _autoConnectTimerRunning = true; #if ARCAZE - if (!arcazeCache.Available()) + if (arcazeCache.Enabled && !arcazeCache.Available()) { - Log.Instance.log("AutoConnect modules.", LogSeverity.Debug); - if (Properties.Settings.Default.ArcazeSupportEnabled) - arcazeCache.connect(); // _initializeArcaze(); + arcazeCache.connect(); } #endif