pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-upf/+/40234?usp=email )
Change subject: Log regular tunmap/tunend actions as INFO
......................................................................
Log regular tunmap/tunend actions as INFO
Change-Id: If24b1247ab21d1bdb7314244a7936d92377a5548
---
M src/osmo-upf/up_gtp_action.c
1 file changed, 4 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-upf refs/changes/34/40234/1
diff --git a/src/osmo-upf/up_gtp_action.c b/src/osmo-upf/up_gtp_action.c
index a3c6b68..f8b8e58 100644
--- a/src/osmo-upf/up_gtp_action.c
+++ b/src/osmo-upf/up_gtp_action.c
@@ -85,7 +85,7 @@
switch (a->kind) {
case UP_GTP_U_TUNEND:
if (g_upf->tunend.mockup) {
- LOG_UP_GTP_ACTION(a, LOGL_NOTICE, "tunend/mockup active, skipping GTP action
%s\n",
+ LOG_UP_GTP_ACTION(a, LOGL_INFO, "tunend/mockup active, skipping GTP action
%s\n",
enable ? "enable" : "disable");
return 0;
}
@@ -111,13 +111,13 @@
enable ? "enable" : "disable", rc);
return rc;
}
- LOG_UP_GTP_ACTION(a, LOGL_NOTICE, "%s tunend on dev %s\n", enable ?
"Enabled" : "Disabled",
+ LOG_UP_GTP_ACTION(a, LOGL_INFO, "%s tunend on dev %s\n", enable ?
"Enabled" : "Disabled",
gtp_dev->name);
return 0;
case UP_GTP_U_TUNMAP:
if (g_upf->tunmap.mockup) {
- LOG_UP_GTP_ACTION(a, LOGL_NOTICE, "tunmap/mockup active, skipping nftables
ruleset %s\n",
+ LOG_UP_GTP_ACTION(a, LOGL_INFO, "tunmap/mockup active, skipping nftables ruleset
%s\n",
enable ? "enable" : "disable");
return 0;
}
@@ -131,7 +131,7 @@
enable ? "enable" : "disable", rc);
return rc;
}
- LOG_UP_GTP_ACTION(a, LOGL_NOTICE, "%s tunmap, nft chain IDs: access--%u->
<-%u--core\n",
+ LOG_UP_GTP_ACTION(a, LOGL_INFO, "%s tunmap, nft chain IDs: access--%u->
<-%u--core\n",
enable ? "Enabled" : "Disabled",
a->tunmap.access.chain_id, a->tunmap.core.chain_id);
return 0;
--
To view, visit
https://gerrit.osmocom.org/c/osmo-upf/+/40234?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-upf
Gerrit-Branch: master
Gerrit-Change-Id: If24b1247ab21d1bdb7314244a7936d92377a5548
Gerrit-Change-Number: 40234
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>