mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-15 12:50:47 +02:00
Remove logging in handling of ancestor request (#157)
This commit is contained in:
parent
35de989e14
commit
dffa88de45
1 changed files with 7 additions and 5 deletions
|
|
@ -82,8 +82,8 @@ class SqueakAdminServerHandler(object):
|
|||
logger.info("Handle get followed squeak display entries.")
|
||||
squeak_entries_with_profile = self.squeak_node.get_followed_squeak_entries_with_profile()
|
||||
logger.info(
|
||||
"Got squeak entries with profile: {}".format(
|
||||
squeak_entries_with_profile
|
||||
"Got number of squeak entries: {}".format(
|
||||
len(squeak_entries_with_profile)
|
||||
)
|
||||
)
|
||||
return squeak_entries_with_profile
|
||||
|
|
@ -95,6 +95,11 @@ class SqueakAdminServerHandler(object):
|
|||
min_block,
|
||||
max_block,
|
||||
)
|
||||
logger.info(
|
||||
"Got number of squeak entries: {}".format(
|
||||
len(squeak_entries_with_profile)
|
||||
)
|
||||
)
|
||||
return squeak_entries_with_profile
|
||||
|
||||
def handle_get_ancestor_squeak_display_entries(self, squeak_hash_str):
|
||||
|
|
@ -103,7 +108,4 @@ class SqueakAdminServerHandler(object):
|
|||
squeak_hash_str,
|
||||
)
|
||||
logger.info("Got number of ancestor squeak entries: {}".format(len(squeak_entries_with_profile)))
|
||||
logger.info("Got ancestor squeak display entries:")
|
||||
for entry in squeak_entries_with_profile:
|
||||
logger.info("Entry: {}".format(entry))
|
||||
return squeak_entries_with_profile
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue