aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-11-29 20:39:57 +0100
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-11-29 20:40:01 +0100
commit77a7cf429b5b296d39ace5b0b2b672eb3c674022 (patch)
tree7b14a24af8fca3dc902e62c236a483af916c6c06
parent9af069d5daecd586a78f0c411ff3d3919465fb2f (diff)
ipaccess: fix verbosive logging in __handle_ts1_write()
Apparently, the logging level was changed unintentionally. Change-Id: Ibdee8cbcc12edf14fd824b515d0aecb89fcac490 Fixes: Idce3bb3daf8ab16b84968a61502c826df8b773ed
-rw-r--r--src/input/ipaccess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index a370c77..8843191 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -509,7 +509,7 @@ static int __handle_ts1_write(struct osmo_fd *bfd, struct e1inp_line *line)
msg->l2h = msg->data;
ipa_prepend_header(msg, sign_link->tei);
- LOGPITS(e1i_ts, DLMI, LOGL_NOTICE, "TX %u: %s\n", ts_nr,
+ LOGPITS(e1i_ts, DLMI, LOGL_DEBUG, "TX %u: %s\n", ts_nr,
osmo_hexdump(msg->l2h, msgb_l2len(msg)));
ret = send(bfd->fd, msg->data, msg->len, 0);