From b09be9c98c87257e51c01c2f1a44aa2b00c3e3c7 Mon Sep 17 00:00:00 2001 From: Maximilian Wache <54880394+lelouch94@users.noreply.github.com> Date: Fri, 12 Mar 2021 20:52:05 +0100 Subject: [PATCH] Add N2N disabled explanation to log parser --- Logparser/logparser.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Logparser/logparser.js b/Logparser/logparser.js index 05ac8f1cc..8835476d8 100644 --- a/Logparser/logparser.js +++ b/Logparser/logparser.js @@ -322,6 +322,7 @@ var match = [ { re: "!TSF:RTE:FPAR ACTIVE", d: "Finding parent active, message not sent" }, { re: "!TSF:RTE:(\\d+) UNKNOWN", d: "Routing for destination $1 unknown, sending message to parent" }, { re: "!TSF:RTE:N2N FAIL", d: "Direct node-to-node communication failed - handing over to parent" }, + { re: "TSF:RTE:N2N DIS", d: "Direct node-to-node communication disabled by configuration" }, { re: "TSF:RRT:ROUTE N=(\\d+),R=(\\d+)", d: "Routing table, messages to node ($1) are routed via node ($2)"}, { re: "!TSF:SND:TNR", d: "Transport not ready, message cannot be sent" }, { re: "TSF:TDI:TSL", d: "Set transport to sleep" },