Skip to content

Commit

Permalink
Quieten a debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebrady committed Sep 11, 2023
1 parent dabfee5 commit ef14cac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -5213,7 +5213,7 @@ static void *rtsp_conversation_thread_func(void *pconn) {
}
}
if (method_selected == 0) {
debug(1,
debug(2,
"Connection %d: Unrecognised and unhandled rtsp request \"%s\". HTTP Response Code "
"501 (\"Not Implemented\") returned.",
conn->connection_number, req->method);
Expand All @@ -5232,7 +5232,7 @@ static void *rtsp_conversation_thread_func(void *pconn) {
obfp += 2;
};
*obfp = 0;
debug(1, "Content: \"%s\".", obf);
debug(2, "Content: \"%s\".", obf);
}
}
}
Expand Down

0 comments on commit ef14cac

Please sign in to comment.