From 95d52739677757c207b0f6ca741e42e2ab9ecbfd Mon Sep 17 00:00:00 2001 From: Neels Janosch Hofmeyr Date: Mon, 20 Feb 2023 17:01:37 +0100 Subject: [PATCH] log tweak Change-Id: Ib6f8c46355d4748089e59c80fc1c8c736c887a26 --- src/osmo-hnbgw/hnbgw_rua.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/osmo-hnbgw/hnbgw_rua.c b/src/osmo-hnbgw/hnbgw_rua.c index 2160694..5581148 100644 --- a/src/osmo-hnbgw/hnbgw_rua.c +++ b/src/osmo-hnbgw/hnbgw_rua.c @@ -128,7 +128,7 @@ int rua_tx_dt(struct hnb_context *hnb, int is_ps, uint32_t context_id, &out); ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_RUA_DirectTransfer, &out); - LOGHNB(hnb, DRUA, LOGL_DEBUG, "transmitting RUA (cn=%s) payload of %u bytes\n", + LOGHNB(hnb, DRUA, LOGL_DEBUG, "transmitting RUA DirectTransfer (cn=%s) payload of %u bytes\n", is_ps ? "ps" : "cs", msgb_length(msg)); return hnbgw_rua_tx(hnb, msg); @@ -167,9 +167,9 @@ int rua_tx_disc(struct hnb_context *hnb, int is_ps, uint32_t context_id, &out); ASN_STRUCT_FREE_CONTENTS_ONLY(asn_DEF_RUA_Disconnect, &out); - LOGHNB(hnb, DRUA, LOGL_DEBUG, "transmitting RUA (cn=%s) payload of %u bytes\n", - is_ps ? "ps" : "cs", msgb_length(msg)); + LOGHNB(hnb, DRUA, LOGL_DEBUG, "transmitting RUA Disconnect (cn=%s) payload of %u bytes\n", + is_ps ? "ps" : "cs", msgb_length(msg)); return hnbgw_rua_tx(hnb, msg); }