From 3ab9cf5a429b1364bdda224ec34a7b80a2e0475c Mon Sep 17 00:00:00 2001 From: Klaus K Wilting Date: Sun, 8 Mar 2020 16:15:16 +0100 Subject: [PATCH] MAC decode printout tuned --- src/lorawan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lorawan.cpp b/src/lorawan.cpp index e99ff7c5..933a1ffd 100644 --- a/src/lorawan.cpp +++ b/src/lorawan.cpp @@ -573,7 +573,7 @@ void mac_decode(const uint8_t cmd[], const uint8_t cmdlen, bool is_down) { memmove(foundcmd, cmd + cursor, (p + i)->params); // strip opcode from cmd array cursor += (p + i)->params; - ESP_LOGD(TAG, "%s MAC command %s", MACdir, (p + i)->cmdname); + ESP_LOGD(TAG, "%s %s", MACdir, (p + i)->cmdname); } else ESP_LOGD(TAG, "%s MAC command 0x%02X with missing parameter(s)", MACdir, (p + i)->cid);