Skip to content

Commit

Permalink
fix(mme): Moved info log to debug mme_app_state_converter (#15181)
Browse files Browse the repository at this point in the history
* fix(mme): Moved info log to debug mme_app_state_converter

Signed-off-by: shashidhar-patil <shashidhar.patil@wavelabs.ai>

* Added fix for CI build

Signed-off-by: shashidhar-patil <shashidhar.patil@wavelabs.ai>

---------

Signed-off-by: shashidhar-patil <shashidhar.patil@wavelabs.ai>
  • Loading branch information
shashidhar-patil committed Apr 24, 2023
1 parent 666a3f3 commit d6d76ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions feg/gateway/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,11 @@ x-pyservice_base: &pyservice_base

# Use generic python anchor with logging capabilities to avoid repetition for python services
x-pyservice: &pyservice
<<: *pyservice_base
<<: *depends_on_logs
<<: [*pyservice_base, *depends_on_logs]

# Use generic go anchor to avoid repetition for go services
x-goservice: &goservice
<<: *service
<<: *depends_on_logs
<<: [*service, *depends_on_logs]
image: ${DOCKER_REGISTRY}gateway_go:${IMAGE_VERSION}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ void MmeNasStateConverter::guti_table_to_proto(
uint64_t mme_ue_id;

std::string guti_str((char*)(*key_array_p)[i], (GUTI_STRING_LEN - 1));
OAILOG_INFO(LOG_MME_APP, "Looking for key %p with value %s strlen:%ld\n",
(*key_array_p)[i], guti_str.c_str(), strlen(guti_str.c_str()));
OAILOG_DEBUG(LOG_MME_APP, "Looking for key %p with value %s strlen:%ld\n",
(*key_array_p)[i], guti_str.c_str(), strlen(guti_str.c_str()));
hashtable_rc_t ht_rc =
obj_hashtable_uint64_ts_get(guti_htbl, (const void*)(*key_array_p)[i],
(GUTI_STRING_LEN - 1), &mme_ue_id);
Expand Down

0 comments on commit d6d76ce

Please sign in to comment.