pespin submitted this change.

View Change

Approvals: fixeria: Looks good to me, but someone else must approve osmith: Looks good to me, approved Jenkins Builder: Verified
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(-)

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);

To view, visit change 30723. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-hnbgw
Gerrit-Branch: master
Gerrit-Change-Id: Iefe13934d097d646db232127040feb02db37bc38
Gerrit-Change-Number: 30723
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier@sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: lynxis lazus <lynxis@fe80.eu>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>
Gerrit-MessageType: merged