From 34674549928a4d0f00a711b3e92c6bf7171e1172 Mon Sep 17 00:00:00 2001 From: Inso <insomniak.fr@gmail.com> Date: Sun, 20 Sep 2015 01:40:29 +0200 Subject: [PATCH] Move logs in node refreshing calls --- src/cutecoin/core/net/node.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/cutecoin/core/net/node.py b/src/cutecoin/core/net/node.py index ca363b78..ec270c25 100644 --- a/src/cutecoin/core/net/node.py +++ b/src/cutecoin/core/net/node.py @@ -274,15 +274,10 @@ class Node(QObject): """ Refresh all data of this node """ - logging.debug("Refresh block") self.refresh_block() - logging.debug("Refresh info") self.refresh_informations() - logging.debug("Refresh uid") self.refresh_uid() - logging.debug("Refresh peers") self.refresh_peers() - logging.debug("Refresh summary") self.refresh_summary() @asyncify @@ -291,6 +286,7 @@ class Node(QObject): """ Refresh the blocks of this node """ + logging.debug("Refresh block") conn_handler = self.endpoint.conn_handler() logging.debug("Requesting {0}".format(conn_handler)) @@ -322,6 +318,7 @@ class Node(QObject): """ Refresh basic information (pubkey and currency) """ + logging.debug("Refresh info") conn_handler = self.endpoint.conn_handler() try: @@ -359,6 +356,7 @@ class Node(QObject): """ Refresh the summary of this node """ + logging.debug("Refresh summary") conn_handler = self.endpoint.conn_handler() try: @@ -386,6 +384,7 @@ class Node(QObject): """ Refresh the node UID """ + logging.debug("Refresh uid") conn_handler = self.endpoint.conn_handler() try: data = yield from bma.wot.Lookup(conn_handler, self.pubkey).get() @@ -421,6 +420,7 @@ class Node(QObject): """ Refresh the list of peers knew by this node """ + logging.debug("Refresh peers") conn_handler = self.endpoint.conn_handler() try: -- GitLab