From c7a7ad8f5f304d95a96c247be95ed6df6e127caa Mon Sep 17 00:00:00 2001 From: Antoine Millet Date: Wed, 5 Oct 2011 11:22:53 +0200 Subject: [PATCH] Added logging information when a RpcConnection is closed --- sjrpc/core/rpcconnection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sjrpc/core/rpcconnection.py b/sjrpc/core/rpcconnection.py index efcdb84..11df2a8 100644 --- a/sjrpc/core/rpcconnection.py +++ b/sjrpc/core/rpcconnection.py @@ -391,6 +391,7 @@ class RpcConnection(object): ''' Shutdown this connection. ''' + self.logger.info('Connection shutdown.') # Shutdown each registered watcher: for watcher in self._watchers: watcher.stop() -- GitLab