aboutsummaryrefslogtreecommitdiffstats
path: root/examples/osmux-test-output.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2013-02-19 17:13:37 +0100
committerPablo Neira Ayuso <pablo@gnumonks.org>2013-02-19 17:13:37 +0100
commitaeeb4399a235e7dd25708adf59b3413133adbed2 (patch)
tree13f03b147604bd83798f6ed1a7171982a4828ee3 /examples/osmux-test-output.c
parent1f43121ef0828e7296d08f0654d81f950a941319 (diff)
examples: use DOSMUX_TEST instead of DLINP in logging messages
Diffstat (limited to 'examples/osmux-test-output.c')
-rw-r--r--examples/osmux-test-output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/osmux-test-output.c b/examples/osmux-test-output.c
index f797f49..5fe2bba 100644
--- a/examples/osmux-test-output.c
+++ b/examples/osmux-test-output.c
@@ -102,7 +102,7 @@ int read_cb(struct osmo_dgram *conn)
return -1;
}
- LOGP(DLINP, LOGL_DEBUG, "received OSMUX message (len=%d)\n", msg->len);
+ LOGP(DOSMUX_TEST, LOGL_DEBUG, "received OSMUX message (len=%d)\n", msg->len);
while((osmuxh = osmux_xfrm_output_pull(msg)) != NULL) {
printf("tx_sched\n");
@@ -115,7 +115,7 @@ int read_cb(struct osmo_dgram *conn)
void sighandler(int foo)
{
- LOGP(DLINP, LOGL_NOTICE, "closing OSMUX.\n");
+ LOGP(DOSMUX_TEST, LOGL_NOTICE, "closing OSMUX.\n");
osmo_dgram_close(conn);
osmo_dgram_destroy(conn);
osmo_rtp_handle_free(rtp);