Skip to content

Commit

Permalink
Fix #520: ip and port are swapped in log (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
e-carlin authored Sep 11, 2024
1 parent f3b8ee2 commit 6d23eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pykern/pkasyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async def _do():
),
xheaders=True,
).listen(p, i)
pkdlog("name={} ip={} port={}", http_cfg.get("name"), p, i)
pkdlog("name={} ip={} port={}", http_cfg.get("name"), i, p)
await asyncio.Event().wait()

if self._http_server:
Expand Down

0 comments on commit 6d23eb9

Please sign in to comment.