Less verbose

merge-requests/21/head
Bob Mottram 2021-03-14 19:46:46 +00:00
parent 1a17acd43e
commit b207d2d674
2 changed files with 6 additions and 3 deletions

View File

@ -814,7 +814,7 @@ def _personReceiveUpdate(baseDir: str,
# save to cache in memory
storePersonInCache(baseDir, personJson['id'], personJson,
personCache, True)
# save to cache on file
# save to cache on file
if saveJson(personJson, actorFilename):
if debug:
print('actor updated for ' + personJson['id'])
@ -3048,7 +3048,8 @@ def runInboxQueue(recentPostsCache: {}, maxRecentPosts: int,
federationList,
queueJson['postNickname'],
debug):
print('Queue: Update accepted from ' + keyId)
if debug:
print('Queue: Update accepted from ' + keyId)
if os.path.isfile(queueFilename):
os.remove(queueFilename)
if len(queue) > 0:

View File

@ -3908,7 +3908,9 @@ def downloadAnnounce(session, baseDir: str, httpPrefix: str,
print('Announce download blocked object: ' +
str(postJsonObject['object']))
return None
print('Downloading Announce content for ' + postJsonObject['object'])
if debug:
print('Downloading Announce content for ' +
postJsonObject['object'])
announcedJson = \
getJson(session, postJsonObject['object'], asHeader,
None, projectVersion, httpPrefix, domain)