Skip to content

Commit

Permalink
Fix logger message
Browse files Browse the repository at this point in the history
  • Loading branch information
polybassa authored and rumpelsepp committed Nov 19, 2024
1 parent 641f295 commit 3cee08c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gallia/commands/discover/find_xcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ async def test_udp(self) -> None:
try:
_, _, data_ret = self.unpack_xcp_eth(self.socket.recv(1024))
ret = bytes_repr(data_ret)
logger.info(f"Receive data on TCP port {port}: {ret}")
logger.info(f"Receive data on UDP port {port}: {ret}")
if len(data_ret) > 0 and data_ret[0] == 0xFF:
logger.result(f"XCP Slave on UDP port {port}, data: {ret}")
endpoints.append(port)
Expand Down

0 comments on commit 3cee08c

Please sign in to comment.