Fix logging if network down (#11373)

This commit is contained in:
Theo Arends 2021-03-18 09:27:46 +01:00
parent 3d3c77972d
commit ff7a911e45
2 changed files with 2 additions and 2 deletions

View File

@ -2125,7 +2125,7 @@ void SyslogAsync(bool refresh) {
static uint32_t syslog_host_hash = 0; // Syslog host name hash
static uint32_t index = 1;
if (!TasmotaGlobal.syslog_level) { return; }
if (!TasmotaGlobal.syslog_level || TasmotaGlobal.global_state.network_down) { return; }
if (refresh && !NeedLogRefresh(TasmotaGlobal.syslog_level, index)) { return; }
char* line;

View File

@ -311,7 +311,7 @@ void MqttUnsubscribe(const char *topic) {
void MqttPublishLoggingAsync(bool refresh) {
static uint32_t index = 1;
if (!Settings.mqttlog_level || !Settings.flag.mqtt_enabled) { return; } // SetOption3 - Enable MQTT
if (!Settings.mqttlog_level || !Settings.flag.mqtt_enabled || !Mqtt.connected) { return; } // SetOption3 - Enable MQTT
if (refresh && !NeedLogRefresh(Settings.mqttlog_level, index)) { return; }
char* line;