aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2015-12-15 17:41:41 +0100
committerDaniel Willmann <dwillmann@sysmocom.de>2015-12-17 13:08:32 +0100
commit7c27f7b7922f4fa8137b36d41082f14adc14b180 (patch)
tree14d4a1fa590b30d90b75b3b6bd5449ed7987440a /src
parentace1d24d346d1f1184f2aceb34016f4e9143199a (diff)
hnbgw: Lower level of SCTP notif. msg to debug and set default log level to info
Diffstat (limited to 'src')
-rw-r--r--src/hnbgw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hnbgw.c b/src/hnbgw.c
index 0f05033..d8ef32d 100644
--- a/src/hnbgw.c
+++ b/src/hnbgw.c
@@ -141,7 +141,7 @@ static int hnb_read_cb(struct osmo_fd *fd)
msgb_put(msg, rc);
if (flags & MSG_NOTIFICATION) {
- LOGP(DMAIN, LOGL_INFO, "Ignoring SCTP notification\n");
+ LOGP(DMAIN, LOGL_DEBUG, "Ignoring SCTP notification\n");
msgb_free(msg);
return 0;
}
@@ -226,7 +226,7 @@ static int listen_fd_cb(struct osmo_fd *fd, unsigned int what)
static const struct log_info_cat log_cat[] = {
[DMAIN] = {
- .name = "DMAIN", .loglevel = LOGL_DEBUG, .enabled = 1,
+ .name = "DMAIN", .loglevel = LOGL_INFO, .enabled = 1,
.color = "",
.description = "Main program",
},