gb: Print signalling and data weights on NS-VC creation.

Change-Id: Ieebec5487f5d995a453d15bc024931299d5cf5bf
This commit is contained in:
Alexander Chemeris 2020-03-03 19:20:10 +03:00
parent 8abe45d86a
commit 07cdd76ffd
1 changed files with 2 additions and 1 deletions

View File

@ -318,7 +318,8 @@ struct gprs_nsvc *gprs_nsvc_create2(struct gprs_ns_inst *nsi, uint16_t nsvci,
return NULL;
}
LOGP(DNS, LOGL_INFO, "NSVCI=%u Creating NS-VC\n", nsvci);
LOGP(DNS, LOGL_INFO, "NSVCI=%u Creating NS-VC with Signal weight %u, Data weight %u\n",
nsvci, sig_weight, data_weight);
nsvc = talloc_zero(nsi, struct gprs_nsvc);
if (!nsvc)