diff options
author | default <nobody@localhost> | 2024-03-04 09:22:06 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-03-04 09:22:06 +0100 |
commit | ae6df3d288f5fabaa12450561942e48b813bc84c (patch) | |
tree | 2a9c63bf22b75bb8605e787fbbc3ce07402bd25e /data.c | |
parent | 61647de38bbd8751d18680251f31d6b5347a714c (diff) |
More 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 %s", fn, xs_dict_get(msg, "id"))); + snac_debug(snac, 1, xs_fmt("enqueue_input %s", 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 %s", fn, xs_dict_get(msg, "id"))); + srv_debug(1, xs_fmt("enqueue_shared_input %s", xs_dict_get(msg, "id"))); } |