pespin has submitted this change. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/41991?usp=email )
Change subject: sccp_scrc: Improve logging unable to find SCCP user ......................................................................
sccp_scrc: Improve logging unable to find SCCP user
Change-Id: I9277624a260ee2f94f8cd059211aff53cfb50574 --- M src/sccp_scrc.c 1 file changed, 3 insertions(+), 2 deletions(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved fixeria: Looks good to me, but someone else must approve
diff --git a/src/sccp_scrc.c b/src/sccp_scrc.c index 92f7818..1e12ffd 100644 --- a/src/sccp_scrc.c +++ b/src/sccp_scrc.c @@ -371,8 +371,9 @@ /* Is subsystem equipped? */ if (!scu) { /* Error: unequipped user */ - LOGPSCI(inst, LOGL_NOTICE, "Unable to find user for SSN=%u PC=%s\n", - called->ssn, osmo_ss7_pointcode_print(inst->ss7, called->pc)); + LOGPSCI(inst, LOGL_NOTICE, "Unable to find user for SSN=%u=%s PC=%u=%s\n", + called->ssn, osmo_sccp_ssn_name(called->ssn), + called->pc, osmo_ss7_pointcode_print(inst->ss7, called->pc)); return scrc_node_4(inst, xua, SCCP_RETURN_CAUSE_UNEQUIPPED_USER); }