From ac3cb0f5649bff98859e5c2a9a44f108dff41557 Mon Sep 17 00:00:00 2001 From: Julien Muchembled Date: Tue, 25 Sep 2018 18:05:20 +0200 Subject: [PATCH] Log own ip --- re6st/tunnel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/re6st/tunnel.py b/re6st/tunnel.py index ee20e9d..b18cc18 100644 --- a/re6st/tunnel.py +++ b/re6st/tunnel.py @@ -644,8 +644,8 @@ class BaseTunnelManager(object): if country: if self._country.get(family) != country: self._country[family] = country - logging.info('%s country: %s', - family_dict[family], country) + logging.info('%s country: %s (%s)', + family_dict[family], country, ip) return -- 2.25.1