diff --git a/main/rtp.c b/main/rtp.c
index 00bb42855f2595b3bd882f2ffcca21e34d986f52..a4af4e01ce6bf82cef4de9f954c6620c8c6f4d43 100644
--- a/main/rtp.c
+++ b/main/rtp.c
@@ -1287,10 +1287,8 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
 		/* Schedule transmission of Receiver Report */
 		rtp->rtcp->schedid = ast_sched_add(rtp->sched, ast_rtcp_calc_interval(rtp), ast_rtcp_write, rtp);
 	}
-	if ( rtp->lastrxseqno - seqno  > 100) { /* if so it would indicate that the sender cycled; allow for misordering */
+	if ( rtp->lastrxseqno - seqno  > 100) /* if so it would indicate that the sender cycled; allow for misordering */
 		rtp->cycles += RTP_SEQ_MOD;
-		ast_verbose("SEQNO cycled: %u\t%d\n", rtp->cycles, seqno);
-	}
 
 	rtp->lastrxseqno = seqno;