Skip to content

Commit

Permalink
Remove verbose hashtable dumps in MME log
Browse files Browse the repository at this point in the history
Summary:
The MME logs have a lot of noise as we dump all the hashtables at every call to
imme_ue_context_exists_imsi. Cleaning it up in this change.

Reviewed By: xjtian

Differential Revision: D16570068

fbshipit-source-id: 1edd04c619ad692fc9855434c52f619e4c829c11
  • Loading branch information
ssanadhya authored and facebook-github-bot committed Aug 5, 2019
1 parent 862d828 commit 2090e03
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lte/gateway/c/oai/tasks/mme_app/mme_app_context.c
Expand Up @@ -458,7 +458,6 @@ ue_mm_context_t *mme_ue_context_exists_mme_ue_s1ap_id(
"ECM_IDLE" :
(ue_context_p->ecm_state == ECM_CONNECTED) ? "ECM_CONNECTED" :
"UNKNOWN");
// unlock_ue_contexts(ue_context_p);
}
return ue_context_p;
}
Expand All @@ -470,7 +469,6 @@ struct ue_mm_context_s *mme_ue_context_exists_imsi(
hashtable_rc_t h_rc = HASH_TABLE_OK;
uint64_t mme_ue_s1ap_id64 = 0;

mme_ue_context_dump_coll_keys();
h_rc = hashtable_uint64_ts_get(
mme_app_desc.mme_ue_contexts.imsi_ue_context_htbl,
(const hash_key_t) imsi,
Expand All @@ -482,7 +480,6 @@ struct ue_mm_context_s *mme_ue_context_exists_imsi(
} else {
OAILOG_WARNING(
LOG_MME_APP, " No IMSI hashtable for IMSI " IMSI_64_FMT "\n", imsi);
mme_ue_context_dump_coll_keys();
}
return NULL;
}
Expand Down

0 comments on commit 2090e03

Please sign in to comment.