summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authorGravatar default2024-03-04 09:22:06 +0100
committerGravatar default2024-03-04 09:22:06 +0100
commitae6df3d288f5fabaa12450561942e48b813bc84c (patch)
tree2a9c63bf22b75bb8605e787fbbc3ce07402bd25e /data.c
parentLogging tweaks. (diff)
downloadsnac2-ae6df3d288f5fabaa12450561942e48b813bc84c.tar.gz
snac2-ae6df3d288f5fabaa12450561942e48b813bc84c.tar.xz
snac2-ae6df3d288f5fabaa12450561942e48b813bc84c.zip
More logging tweaks.
Diffstat (limited to 'data.c')
-rw-r--r--data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/data.c b/data.c
index cb2d2ec..d006200 100644
--- a/data.c
+++ b/data.c
@@ -2225,7 +2225,7 @@ void enqueue_input(snac *snac, const xs_dict *msg, const xs_dict *req, int retri
2225 2225
2226 qmsg = _enqueue_put(fn, qmsg); 2226 qmsg = _enqueue_put(fn, qmsg);
2227 2227
2228 snac_debug(snac, 1, xs_fmt("enqueue_input %s %s", fn, xs_dict_get(msg, "id"))); 2228 snac_debug(snac, 1, xs_fmt("enqueue_input %s", xs_dict_get(msg, "id")));
2229} 2229}
2230 2230
2231 2231
@@ -2240,7 +2240,7 @@ void enqueue_shared_input(const xs_dict *msg, const xs_dict *req, int retries)
2240 2240
2241 qmsg = _enqueue_put(fn, qmsg); 2241 qmsg = _enqueue_put(fn, qmsg);
2242 2242
2243 srv_debug(1, xs_fmt("enqueue_shared_input %s %s", fn, xs_dict_get(msg, "id"))); 2243 srv_debug(1, xs_fmt("enqueue_shared_input %s", xs_dict_get(msg, "id")));
2244} 2244}
2245 2245
2246 2246