diff options
author | default <nobody@localhost> | 2022-11-20 16:00:43 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-11-20 16:00:43 +0100 |
commit | 78388498e96910a7c5a61064b23bc77ccb0f31af (patch) | |
tree | 457232c61828371942cf7fe1eecd75d0379b5af7 | |
parent | 273390b5bb3a803bc91f10e03543b60b561ffbcd (diff) |
Also log the hidden parent of a dropped message.
-rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -445,7 +445,7 @@ int _timeline_write(snac *snac, char *id, char *msg, char *parent, char *referre /* is parent hidden? */ if ((v = xs_dict_get(v, "hidden")) && xs_type(v) == XSTYPE_TRUE) { snac_debug(snac, 1, - xs_fmt("_timeline_write dropping child of hidden parent %s", id)); + xs_fmt("_timeline_write dropping due to hidden parent %s (%s)", id, parent)); return 0; } |