Skip to content

Commit

Permalink
fix(prim-rdbi): Log actual target string instead of object address
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdinandjarisch committed Sep 27, 2023
1 parent 6f4fa67 commit 7fd479e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gallia/commands/primitive/uds/read_by_identifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ async def main(self, args: Namespace) -> None:
logger.info(f"hex: {data.hex()}")
logger.info(f"raw: {repr(data)}")
logger.result(
f"{self.ecu.transport.target} responds to {args.data_id:#06x} with {data.hex()}"
f"{self.ecu.transport.target.raw} responds to {args.data_id:#06x} with {data.hex()}"
)
self.result = data

0 comments on commit 7fd479e

Please sign in to comment.