From 2946aaba52f15a878f306cae0233ff6a416277be Mon Sep 17 00:00:00 2001 From: Stefan Mititelu Date: Fri, 14 May 2021 18:16:08 +0300 Subject: [PATCH] Add comment when rtp or echo errors --- src/sipp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sipp.cpp b/src/sipp.cpp index f13666d5..46284b99 100644 --- a/src/sipp.cpp +++ b/src/sipp.cpp @@ -1134,6 +1134,7 @@ void sipp_exit(int rc, int rtp_errors, int echo_errors) // then everything is OK! if ((rtp_errors > 0) || (echo_errors > 0)) { + WARNING("GOT %d rtp_errors and %d echo_errors", rtp_errors, echo_errors); exit(EXIT_RTPCHECK_FAILED); } else