public bool WriteLvar(string name, double value) { bool result = false; try { FSUIPCConnection.WriteLVar(name, value); result = true; } catch { Log.Logger.Error($"IPCManager: Exception while writing LVar <{name}:{value}> to FSUIPC"); } return(result); }