mirror of https://github.com/arendst/Tasmota.git
Add logging quick exit code
This commit is contained in:
parent
317b5ab2b6
commit
0624ee1ca3
|
@ -1927,6 +1927,7 @@ void Syslog(void)
|
|||
void SyslogAsync(bool refresh) {
|
||||
static uint32_t index = 1;
|
||||
|
||||
if (!TasmotaGlobal.syslog_level) { return; }
|
||||
if (refresh && !NeedLogRefresh(TasmotaGlobal.syslog_level, index)) { return; }
|
||||
|
||||
char* line;
|
||||
|
|
|
@ -294,7 +294,7 @@ void MqttUnsubscribe(const char *topic)
|
|||
void MqttPublishLoggingAsync(bool refresh) {
|
||||
static uint32_t index = 1;
|
||||
|
||||
if (!Settings.flag.mqtt_enabled) { return; } // SetOption3 - Enable MQTT
|
||||
if (!Settings.mqttlog_level || !Settings.flag.mqtt_enabled) { return; } // SetOption3 - Enable MQTT
|
||||
if (refresh && !NeedLogRefresh(Settings.mqttlog_level, index)) { return; }
|
||||
|
||||
char* line;
|
||||
|
|
Loading…
Reference in New Issue