File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1180,20 +1180,20 @@ ssize_t timed_read_from_rtsp_connection(rtsp_conn_info *conn, uint64_t wait_time
1180
1180
} else {
1181
1181
result = read (conn -> fd , buf , count );
1182
1182
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 );
1184
1184
}
1185
1185
}
1186
1186
#else
1187
1187
result = read (conn -> fd , buf , count );
1188
1188
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 );
1190
1190
1191
1191
}
1192
1192
#endif
1193
1193
if ((result == 0 ) && (errno != 0 )) {
1194
1194
char errorstring [1024 ];
1195
1195
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\"." ,
1197
1197
conn -> connection_number , errno , (char * )errorstring );
1198
1198
}
1199
1199
You can’t perform that action at this time.
0 commit comments