better position debug output

This commit is contained in:
Kevin Hester
2020-12-09 13:42:36 +08:00
parent a6a4fec4b9
commit a0076eb394
2 changed files with 2 additions and 2 deletions

View File

@@ -386,7 +386,8 @@ void NodeDB::updatePosition(uint32_t nodeId, const Position &p)
{
NodeInfo *info = getOrCreateNode(nodeId);
// we always trust our local timestamps more
DEBUG_MSG("DB update position node=0x%x time=%u, latI=%d, lonI=%d\n", nodeId, p.time, p.latitude_i, p.longitude_i);
info->position = p;
info->has_position = true;
updateGUIforNode = info;