diff --git a/src/syslog_utils.cpp b/src/syslog_utils.cpp index 3d80f6e..818e2fd 100644 --- a/src/syslog_utils.cpp +++ b/src/syslog_utils.cpp @@ -13,7 +13,7 @@ namespace SYSLOG_Utils { void log(String type, String packet, int rssi, float snr, int freqError) { String syslogPacket = "ESP32 LoRa [APRS] - " + Config.callsign + " - "; - if (Config.syslog.active && (stationMode==1 || stationMode==2)) { + if (Config.syslog.active && (stationMode==1 || stationMode==2 || stationMode==5)) { if (type == "APRSIS Tx") { if (packet.indexOf(":>") > 10) { syslogPacket += type + " - StartUp STATUS - " + packet.substring(packet.indexOf(":>")+2);