summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-11-20 16:00:43 +0100
committerdefault <nobody@localhost>2022-11-20 16:00:43 +0100
commit78388498e96910a7c5a61064b23bc77ccb0f31af (patch)
tree457232c61828371942cf7fe1eecd75d0379b5af7
parent273390b5bb3a803bc91f10e03543b60b561ffbcd (diff)
Also log the hidden parent of a dropped message.
-rw-r--r--data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/data.c b/data.c
index ffb218a..39116ab 100644
--- a/data.c
+++ b/data.c
@@ -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;
}