From 8b63edf2c72071a3fcc2650468ec06e528dd7efe Mon Sep 17 00:00:00 2001 From: Shagaleev Alexey Date: Fri, 25 Oct 2019 15:42:00 +0500 Subject: [PATCH 1/2] add log connect --- aiopika_macrobase/rpc/client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aiopika_macrobase/rpc/client.py b/aiopika_macrobase/rpc/client.py index 5e75623..5f559b7 100644 --- a/aiopika_macrobase/rpc/client.py +++ b/aiopika_macrobase/rpc/client.py @@ -153,6 +153,8 @@ async def connect(self, exchange_name: str = 'rpc', loop: AbstractEventLoop = No self._loop = loop or self._loop await self._reset_callback_queue() + + log.info(f'Connect to {self._host}:{self._port}/{self._virtual_host} ({self._user}:******)') self._connection = await connect_robust( host=self._host, port=self._port, From bedd89ba505318cf5e23a2dd1c3ae175e925c3a0 Mon Sep 17 00:00:00 2001 From: Shagaleev Alexey Date: Fri, 25 Oct 2019 15:42:26 +0500 Subject: [PATCH 2/2] bump version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 06114ca..c1b83a3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='aiopika_macrobase', - version='0.0.18', + version='0.0.19', packages=find_packages(), url='https://github.com/mbcores/aiopika-macrobase', license='MIT',