summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
authorGravatar default2023-06-26 08:38:49 +0200
committerGravatar default2023-06-26 08:38:49 +0200
commit7a0efc368040ed51610a3a224b021b4cc183d85b (patch)
tree57cb7926bc18d4846a6a88ba29e74ad67e84df83 /activitypub.c
parentUpdated README. (diff)
downloadsnac2-7a0efc368040ed51610a3a224b021b4cc183d85b.tar.gz
snac2-7a0efc368040ed51610a3a224b021b4cc183d85b.tar.xz
snac2-7a0efc368040ed51610a3a224b021b4cc183d85b.zip
Increased log level for 'not for us' messages.
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c2
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)
1354 1354
1355 /* reject messages that are not for this user */ 1355 /* reject messages that are not for this user */
1356 if (!is_msg_for_me(snac, msg)) { 1356 if (!is_msg_for_me(snac, msg)) {
1357 snac_debug(snac, 0, xs_fmt("message from %s of type '%s' not for us", actor, type)); 1357 snac_debug(snac, 1, xs_fmt("message from %s of type '%s' not for us", actor, type));
1358 1358
1359 return 1; 1359 return 1;
1360 } 1360 }