main.c: use correct sub-system when printing received HDLC frames

This commit is contained in:
Harald Welte 2022-09-11 20:47:22 +02:00
parent 5027a2ba43
commit 9fcd2c429b
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -88,7 +88,7 @@ static const struct e1inp_line_ops v5le_e1_line_ops = {
static void hdlc_rx_cb(struct e1inp_ts *ts, struct msgb *msg)
{
LOGP(DLMI, LOGL_NOTICE, "HDLC Rx: %s\n", msgb_hexdump(msg));
LOGP(DLINP, LOGL_NOTICE, "HDLC Rx: %s\n", msgb_hexdump(msg));
msgb_free(msg);
}