pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/41991?usp=email )
Change subject: sccp_scrc: Log Point code in integer format too ......................................................................
sccp_scrc: Log Point code in integer format too
Change-Id: I9277624a260ee2f94f8cd059211aff53cfb50574 --- M src/sccp_scrc.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/91/41991/1
diff --git a/src/sccp_scrc.c b/src/sccp_scrc.c index 92f7818..36b704e 100644 --- a/src/sccp_scrc.c +++ b/src/sccp_scrc.c @@ -371,8 +371,8 @@ /* 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 PC=%u=%s\n", + called->ssn, called->pc, osmo_ss7_pointcode_print(inst->ss7, called->pc)); return scrc_node_4(inst, xua, SCCP_RETURN_CAUSE_UNEQUIPPED_USER); }