From b3ab3b3998770a39ffee02ea48f6ba0a69217adb Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 17 Dec 2020 21:35:03 +0000 Subject: [PATCH] Log outgoing actor updates --- daemon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon.py b/daemon.py index 1b27a6f8..0659a2a3 100644 --- a/daemon.py +++ b/daemon.py @@ -4528,6 +4528,7 @@ class PubServer(BaseHTTPRequestHandler): 'cc': [actorJson['id'] + '/followers'], 'object': actorJson } + print('Sending actor update: ' + updateActorJson) self._postToOutbox(updateActorJson, __version__, nickname)