pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/30723 )
Change subject: context_map: Lower loglevel to INFO when deallocating context IDs ......................................................................
context_map: Lower loglevel to INFO when deallocating context IDs
Change-Id: Iefe13934d097d646db232127040feb02db37bc38 --- M src/osmo-hnbgw/context_map.c 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: fixeria: Looks good to me, but someone else must approve osmith: Looks good to me, approved Jenkins Builder: Verified
diff --git a/src/osmo-hnbgw/context_map.c b/src/osmo-hnbgw/context_map.c index 7549942..98dffad 100644 --- a/src/osmo-hnbgw/context_map.c +++ b/src/osmo-hnbgw/context_map.c @@ -165,7 +165,7 @@
void context_map_deactivate(struct hnbgw_context_map *map) { - LOG_MAP(map, DMAIN, LOGL_NOTICE, "Deactivating\n"); + LOG_MAP(map, DMAIN, LOGL_INFO, "Deactivating\n");
/* set the state to reserved. We still show up in the list and * avoid re-allocation of the context-id until we are cleaned up @@ -205,7 +205,7 @@ case MAP_S_RESERVED2: /* second time we see this reserved * entry: remove it */ - LOG_MAP(map, DMAIN, LOGL_NOTICE, "Deallocating\n"); + LOG_MAP(map, DMAIN, LOGL_INFO, "Deallocating\n"); map->state = MAP_S_NULL; llist_del(&map->cn_list); llist_del(&map->hnb_list);