aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-27 17:01:40 +0100
committerHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-27 17:01:40 +0100
commitc9761d59f4d699ac07a2db1f123ebe72f283b5cc (patch)
treeedd19ba6baaaa287d73a8893ce5dd1a016e1500e
parent90f1e70cb00a70ea96f36e2c37fa0740bafe0057 (diff)
correction of RTP timestamps is a NOTICE event, not debug
-rw-r--r--openbsc/src/rtp_proxy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/src/rtp_proxy.c b/openbsc/src/rtp_proxy.c
index 0f4e32799..83b774f97 100644
--- a/openbsc/src/rtp_proxy.c
+++ b/openbsc/src/rtp_proxy.c
@@ -240,7 +240,8 @@ int rtp_send_frame(struct rtp_socket *rs, struct gsm_data_frame *frame)
if (abs(frame_diff) > 1) {
long int frame_diff_excess = frame_diff - 1;
- DEBUGP(DMUX, "Correcting frame difference of %ld frames\n", frame_diff_excess);
+ LOGP(DMUX, LOGL_NOTICE,
+ "Correcting frame difference of %ld frames\n", frame_diff_excess);
rs->transmit.sequence += frame_diff_excess;
rs->transmit.timestamp += frame_diff_excess * duration;
}