Просмотр исходного кода

Increased log level for 'not for us' messages.

default 3 лет назад
Родитель
Сommit
7a0efc3680
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      activitypub.c

+ 1 - 1
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;
     }