From 09ca90f6cdfe73146115a160a00360814de02f71 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Fri, 19 Jul 2024 09:07:46 +0200 Subject: [PATCH] vcap/rtsp: print performed action in verbose --- src/video_capture/rtsp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video_capture/rtsp.c b/src/video_capture/rtsp.c index 1ddb27ea9..a1e3eecc9 100644 --- a/src/video_capture/rtsp.c +++ b/src/video_capture/rtsp.c @@ -133,6 +133,7 @@ static const char *cstr_identity(const char *c) { #define my_curl_easy_perform(A, action_fail) \ { \ CURLcode res = CURLE_OK; \ + MSG(VERBOSE, "Performing cURL operation(s)\n"); \ if ((res = curl_easy_perform((A))) != CURLE_OK){ \ log_msg(LOG_LEVEL_ERROR, MOD_NAME "[%s] curl_easy_perform(%s) failed: %s (%d)\n", __func__, #A, curl_easy_strerror(res), res); \ printf("[rtsp error] could not configure rtsp capture properly, \n\t\tplease check your parameters. \nExiting...\n\n"); \