From 458174d2812ce0ab26d44dbdd2379e67f8d58f7a Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Thu, 28 May 2026 08:38:14 +0200 Subject: [PATCH] frappy_psi.sea: add log info for sea port nuber --- frappy_psi/sea.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappy_psi/sea.py b/frappy_psi/sea.py index 9bddd8df..d3009760 100644 --- a/frappy_psi/sea.py +++ b/frappy_psi/sea.py @@ -127,6 +127,7 @@ class SeaClient(ProxyClient, Module): port = get_sea_port(instance) if port is None: raise ConfigError('missing sea port for %s' % instance) + log.info('connect to sea on port %r', port) opts['uri'] = {'value': 'tcp://localhost:%s' % port} self.objects = set() self._shutdown = threading.Event()