diff --git a/posts.py b/posts.py index ccecc4027..c0cc447a9 100644 --- a/posts.py +++ b/posts.py @@ -3250,8 +3250,9 @@ def _createBoxIndexed(recentPostsCache: {}, print('WARN: Unable to locate post ' + postUrl + ' nickname ' + nickname) - print('Posts added to timeline ' + boxname + ': ' + - str(postsAddedToTimeline)) + if postsCtr < 3: + print('Posts added to json timeline ' + boxname + ': ' + + str(postsAddedToTimeline)) # Generate first and last entries within header if postsCtr > 0: diff --git a/webapp_timeline.py b/webapp_timeline.py index 0b946fcc2..6e2ec136b 100644 --- a/webapp_timeline.py +++ b/webapp_timeline.py @@ -735,9 +735,10 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str, if boxName == 'tlmedia': tlStr += '\n' - print('Items in timeline ' + boxName + ': ' + - str(itemCtr) + ' ' + str(timelineJson['orderedItems'])) - + if itemCtr < 3: + print('Items added to html timeline ' + boxName + ': ' + + str(itemCtr) + ' ' + str(timelineJson['orderedItems'])) + # page down arrow if itemCtr > 2: tlStr += textModeSeparator