Skip to content

Commit

Permalink
Fix logger message
Browse files Browse the repository at this point in the history
  • Loading branch information
polybassa committed Nov 15, 2024
1 parent 2ea04e7 commit 966fe2e
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 @@ -183,7 +183,7 @@ async def test_udp(self, args: Namespace) -> 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 966fe2e

Please sign in to comment.