Debug macos error

This commit is contained in:
Arnaud 2026-04-13 11:04:21 +04:00
parent cb67eb1d60
commit e98abb26ea
No known key found for this signature in database
GPG Key ID: A6C7C781817146FA

View File

@ -28,6 +28,7 @@ proc getRoute(publicAddress: TransportAddress): Result[IpAddress, cstring] =
route.source.address()
except ValueError as e:
# This should not occur really.
echo "Address conversion error: ", e.name, " ", e.msg
error "Address conversion error", exception = e.name, msg = e.msg
return err("Invalid IP address")
ok(ip)