From 85b7596cbbf543a3314041dca8a7cffcedaf9363 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Thu, 21 Mar 2024 00:09:35 -0300 Subject: [PATCH] minor code update --- .vscode/settings.json | 4 ++-- src/syslog_utils.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f179091..a30fc6a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,4 @@ { "editor.tabSize": 4, - "editor.formatOnSave": true -} + "editor.formatOnSave": false +} \ No newline at end of file diff --git a/src/syslog_utils.cpp b/src/syslog_utils.cpp index 01b5daa..36e89e3 100644 --- a/src/syslog_utils.cpp +++ b/src/syslog_utils.cpp @@ -12,7 +12,7 @@ WiFiUDP udpClient; namespace SYSLOG_Utils { void log(String type, String packet, int rssi, float snr, int freqError) { - String syslogPacket = "<165>1 - " + Config.callsign + " CA2RXU_LoRa_iGate_1.2" + " - - - "; //RFC5424 The Syslog Protocol + String syslogPacket = "<165>1 - " + Config.callsign + " CA2RXU_LoRa_iGate_1.3" + " - - - "; //RFC5424 The Syslog Protocol if (Config.syslog.active && WiFi.status() == WL_CONNECTED) { if (type == "APRSIS Tx") { if (packet.indexOf(":>") > 10) {