diff --git a/daemon.py b/daemon.py index bcf65847b..6fa094d0d 100644 --- a/daemon.py +++ b/daemon.py @@ -1829,8 +1829,7 @@ class PubServer(BaseHTTPRequestHandler): print('AUTH: epicyon cookie ' + 'authorization failed, header=' + self.headers['Cookie'].replace('epicyon=', '') + - ' token_str=' + token_str + ' tokens=' + - str(self.server.tokens_lookup)) + ' token_str=' + token_str) return False print('AUTH: Header cookie was not authorized') return False diff --git a/posts.py b/posts.py index 256589f3b..117e6656c 100644 --- a/posts.py +++ b/posts.py @@ -3891,8 +3891,12 @@ def _create_box_indexed(recent_posts_cache: {}, print('WARN: features timeline. ' + 'Unable to locate post ' + post_url) else: - print('WARN: Unable to locate post ' + post_url + - ' nickname ' + nickname) + if timeline_nickname == 'news': + print('WARN: Unable to locate news post ' + + post_url + ' nickname ' + nickname) + else: + print('WARN: Unable to locate post ' + post_url + + ' nickname ' + nickname) if total_posts_count < 3: print('Posts added to json timeline ' + boxname + ': ' +