pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/36579?usp=email )
Change subject: lb: Log name of unhandled sigtran primitive ......................................................................
lb: Log name of unhandled sigtran primitive
Change-Id: I2d71fd347af404c025fc6b13e96f1964e685db05 --- M src/osmo-bsc/lb.c 1 file changed, 12 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/79/36579/1
diff --git a/src/osmo-bsc/lb.c b/src/osmo-bsc/lb.c index 72905b8..511a545 100644 --- a/src/osmo-bsc/lb.c +++ b/src/osmo-bsc/lb.c @@ -209,8 +209,9 @@ break;
default: - LOGP(DLCS, LOGL_ERROR, "Unhandled SIGTRAN operation %s on primitive %u\n", - get_value_string(osmo_prim_op_names, oph->operation), oph->primitive); + LOGP(DLCS, LOGL_ERROR, "Unhandled SIGTRAN primitive %s.%s\n", + osmo_scu_prim_type_name(oph->primitive), + get_value_string(osmo_prim_op_names, oph->operation)); break; }