Skip to content

Commit 9c01b13

Browse files
authored
Fix bug in regex for TSF:RTE (#1462)
1 parent 01d8d10 commit 9c01b13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Logparser/logparser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ var match = [
320320
{ re: "TSF:LRT:OK", d: "Loading routing table successful" },
321321
{ re: "TSF:SRT:OK", d: "Saving routing table successful" },
322322
{ re: "!TSF:RTE:FPAR ACTIVE", d: "Finding parent active, message not sent" },
323-
{ re: "!TSF:RTE:DST (\\d+) UNKNOWN", d: "Routing for destination <b>$1</b> unknown, sending message to parent" },
323+
{ re: "!TSF:RTE:(\\d+) UNKNOWN", d: "Routing for destination <b>$1</b> unknown, sending message to parent" },
324324
{ re: "!TSF:RTE:N2N FAIL", d: "Direct node-to-node communication failed - handing over to parent" },
325325
{ re: "TSF:RRT:ROUTE N=(\\d+),R=(\\d+)", d: "Routing table, messages to node (<b>$1</b>) are routed via node (<b>$2</b>)"},
326326
{ re: "!TSF:SND:TNR", d: "Transport not ready, message cannot be sent" },

0 commit comments

Comments
 (0)