Skip to content

Commit da1c20c

Browse files
committed
Quieten some debug messages.
1 parent d8442c1 commit da1c20c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rtsp.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,20 +1180,20 @@ ssize_t timed_read_from_rtsp_connection(rtsp_conn_info *conn, uint64_t wait_time
11801180
} else {
11811181
result = read(conn->fd, buf, count);
11821182
if (result == 0) {
1183-
debug(1, "AP2 read result 0, for a request count of %u.", count);
1183+
debug(3, "AP2 read result 0, for a request count of %u.", count);
11841184
}
11851185
}
11861186
#else
11871187
result = read(conn->fd, buf, count);
11881188
if (result == 0) {
1189-
debug(1, "AP1 read result 0, for a request count of %u.", count);
1189+
debug(3, "AP1 read result 0, for a request count of %u.", count);
11901190

11911191
}
11921192
#endif
11931193
if ((result == 0) && (errno != 0)) {
11941194
char errorstring[1024];
11951195
strerror_r(errno, (char *)errorstring, sizeof(errorstring));
1196-
debug(1, "Connection %d: read result 0, error %d: \"%s\".",
1196+
debug(2, "Connection %d: read result 0, error %d: \"%s\".",
11971197
conn->connection_number, errno, (char *)errorstring);
11981198
}
11991199

0 commit comments

Comments
 (0)