syslog update

This commit is contained in:
richonguzman 2023-06-30 08:08:25 -04:00
parent 9ff76a2bd1
commit 06319e9c34
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View file

@ -20,7 +20,7 @@ Configuration Config;
WiFiClient espClient;
String versionDate = "2023.06.25";
String versionDate = "2023.06.30";
int myWiFiAPIndex = 0;
int myWiFiAPSize = Config.wifiAPs.size();
WiFi_AP *currentWiFi = &Config.wifiAPs[myWiFiAPIndex];

View file

@ -12,7 +12,7 @@ WiFiUDP udpClient;
namespace SYSLOG_Utils {
void log(String type, String packet, int rssi, float snr, int freqError) {
String syslogPacket = "ESP32 LoRa [APRS] - ";
String syslogPacket = "ESP32 LoRa [APRS] - " + Config.callsign + " - ";
if (Config.syslog.active && (stationMode==1 || stationMode==2)) {
if (type == "APRSIS Tx") {
if (packet.indexOf(":>") > 10) {