diff options
author | default <nobody@localhost> | 2023-06-26 08:38:49 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-06-26 08:38:49 +0200 |
commit | 7a0efc368040ed51610a3a224b021b4cc183d85b (patch) | |
tree | 57cb7926bc18d4846a6a88ba29e74ad67e84df83 /activitypub.c | |
parent | d48f1f9f24827dbe2130d2714d7b9a5d3afb4095 (diff) |
Increased log level for 'not for us' 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 5523b65..028e04e 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1354,7 +1354,7 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req) /* reject messages that are not for this user */ if (!is_msg_for_me(snac, msg)) { - snac_debug(snac, 0, xs_fmt("message from %s of type '%s' not for us", actor, type)); + snac_debug(snac, 1, xs_fmt("message from %s of type '%s' not for us", actor, type)); return 1; } |