diff options
author | default <nobody@localhost> | 2024-03-04 09:18:07 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-03-04 09:18:07 +0100 |
commit | 61647de38bbd8751d18680251f31d6b5347a714c (patch) | |
tree | c6a85ce6975869f2f66ee578f05879f31cfcda19 /data.c | |
parent | 86d2452d26705612e6899fcb74b1faba63dd20a6 (diff) |
Logging tweaks.
Diffstat (limited to 'data.c')
-rw-r--r-- | data.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2225,7 +2225,7 @@ void enqueue_input(snac *snac, const xs_dict *msg, const xs_dict *req, int retri qmsg = _enqueue_put(fn, qmsg); - snac_debug(snac, 1, xs_fmt("enqueue_input %s", fn)); + snac_debug(snac, 1, xs_fmt("enqueue_input %s %s", fn, xs_dict_get(msg, "id"))); } @@ -2240,7 +2240,7 @@ void enqueue_shared_input(const xs_dict *msg, const xs_dict *req, int retries) qmsg = _enqueue_put(fn, qmsg); - srv_debug(1, xs_fmt("enqueue_shared_input %s", fn)); + srv_debug(1, xs_fmt("enqueue_shared_input %s %s", fn, xs_dict_get(msg, "id"))); } |