aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-03-29 14:59:59 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-03-29 14:59:59 +0200
commit1df69f3c646a6c02a920b62586188a8d6b905775 (patch)
tree9df6f6dd62df1e23a0a2a75309f0eacdc904560c /openbsc
parentd7cafafeee05be38dab1fb8fafdd5eca140facf4 (diff)
filter: Move logging level down to INFO
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/nat/bsc_filter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/nat/bsc_filter.c b/openbsc/src/nat/bsc_filter.c
index 099b07a5c..1561676c9 100644
--- a/openbsc/src/nat/bsc_filter.c
+++ b/openbsc/src/nat/bsc_filter.c
@@ -163,11 +163,11 @@ int bsc_nat_filter_ipa(int dir, struct msgb *msg, struct bsc_nat_parsed *parsed)
continue;
/* blacklisted */
- LOGP(DNAT, LOGL_NOTICE, "Blacklisted with rule %d\n", i);
+ LOGP(DNAT, LOGL_INFO, "Blacklisted with rule %d\n", i);
return 1;
} else {
/* blacklisted, we have no content sniffing yet */
- LOGP(DNAT, LOGL_NOTICE, "Blacklisted with rule %d\n", i);
+ LOGP(DNAT, LOGL_INFO, "Blacklisted with rule %d\n", i);
return 1;
}
}
@@ -201,7 +201,7 @@ int bsc_nat_filter_ipa(int dir, struct msgb *msg, struct bsc_nat_parsed *parsed)
continue;
/* whitelisted */
- LOGP(DNAT, LOGL_NOTICE, "Whitelisted with rule %d\n", i);
+ LOGP(DNAT, LOGL_INFO, "Whitelisted with rule %d\n", i);
return 0;
} else {
/* whitelisted */