From e5abbede430278d69fac50b8f42d18e319cdcd82 Mon Sep 17 00:00:00 2001 From: Wild Dragon Dev Date: Thu, 4 Jun 2026 01:13:19 +0000 Subject: [PATCH] debug(fc_writer): add trace logs for GET slots path --- services/capture/deltacast-bridge/fc_writer.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/capture/deltacast-bridge/fc_writer.c b/services/capture/deltacast-bridge/fc_writer.c index 1644116..87bf48c 100644 --- a/services/capture/deltacast-bridge/fc_writer.c +++ b/services/capture/deltacast-bridge/fc_writer.c @@ -200,7 +200,9 @@ fc_writer_t *fc_writer_open(const char *fc_url, /* Already exists, fetch slot details */ char path[256]; snprintf(path, sizeof path, "/slots/%s", slot_id); + fprintf(stderr, "[fc_writer:%s] GET %s\n", slot_id, path); status = http_request("GET", host, port, path, NULL, resp, sizeof resp); + fprintf(stderr, "[fc_writer:%s] GET status=%d resp=%s\n", slot_id, status, resp); } if (status != 200 && status != 201) {