mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-28 07:13:25 +00:00
Print only one byte
This commit is contained in:
parent
c147ce9a85
commit
5c2997ef53
@ -212,7 +212,7 @@ void TraceRouteModule::maybeSetNextHop(NodeNum target, uint8_t nextHopByte)
|
|||||||
|
|
||||||
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(target);
|
meshtastic_NodeInfoLite *node = nodeDB->getMeshNode(target);
|
||||||
if (node && node->next_hop != nextHopByte) {
|
if (node && node->next_hop != nextHopByte) {
|
||||||
LOG_INFO("Updating next-hop for 0x%08x to 0x%08x based on traceroute", target, nextHopByte);
|
LOG_INFO("Updating next-hop for 0x%08x to 0x%02x based on traceroute", target, nextHopByte);
|
||||||
node->next_hop = nextHopByte;
|
node->next_hop = nextHopByte;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user