aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-27 17:01:40 +0100
committerHarald Welte <laforge@gnumonks.org>2009-12-28 13:38:23 +0100
commit9fcf6d78b73590cb51731bfaeeb6d55dd62de25c (patch)
tree87479c1e29e780eeadd2a5f7f0cfcebf57049273
parentb29b57a19860d87b9c149c99d41025cb922e0aa5 (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;
}