diff --git a/feg/gateway/docker/docker-compose.yml b/feg/gateway/docker/docker-compose.yml index 49b6c8fd0d40..c0045a76b315 100644 --- a/feg/gateway/docker/docker-compose.yml +++ b/feg/gateway/docker/docker-compose.yml @@ -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} diff --git a/lte/gateway/c/core/oai/tasks/mme_app/mme_app_state_converter.cpp b/lte/gateway/c/core/oai/tasks/mme_app/mme_app_state_converter.cpp index dbecab1d7dcf..8014f7485740 100644 --- a/lte/gateway/c/core/oai/tasks/mme_app/mme_app_state_converter.cpp +++ b/lte/gateway/c/core/oai/tasks/mme_app/mme_app_state_converter.cpp @@ -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);