diff options
author | default <nobody@localhost> | 2023-02-03 16:51:59 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-02-03 16:51:59 +0100 |
commit | d49089898f077796eea5fb75c3674c57db399cc1 (patch) | |
tree | 212f5c858317e62a28e8fc94302fa495207bf6a0 /activitypub.c | |
parent | 928f22fbbaec5d52836b217ec7a281b880b23f92 (diff) |
Elevated debug level to bad user / invalid user messages.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 9c9ea7c..4f0e246 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1235,7 +1235,7 @@ int activitypub_get_handler(d_char *req, char *q_path, uid = xs_list_get(l, 1); if (!user_open(&snac, uid)) { /* invalid user */ - srv_log(xs_fmt("activitypub_get_handler bad user %s", uid)); + srv_debug(1, xs_fmt("activitypub_get_handler bad user %s", uid)); return 404; } |