diff options
author | default <nobody@localhost> | 2022-12-16 08:35:52 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-12-16 08:35:52 +0100 |
commit | 8461fbfbccea4f716505b25a2b3fcaddf0a83ee4 (patch) | |
tree | 21f72114d26c3d9b5f500c1f2c505f8bc5bbb1e1 | |
parent | e6c48cc96a50fc9f29981541ce22d2f8dd6bb490 (diff) |
Log the actor request.
-rw-r--r-- | activitypub.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c index 356e51b..5e4d254 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1139,6 +1139,8 @@ int activitypub_get_handler(d_char *req, char *q_path, /* if there was no component after the user, it's an actor request */ msg = msg_actor(&snac); *ctype = "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\""; + + snac_debug(&snac, 0, xs_fmt("actor requested")); } else if (strcmp(p_path, "outbox") == 0) { |