From 995def4927fa00ff367680b78fdabab750eb6c96 Mon Sep 17 00:00:00 2001 From: hackerman-kl Date: Sat, 25 Apr 2026 13:32:16 +0200 Subject: [PATCH] milan-avb: msrp: log notify_* at info level by default --- src/modules/module-avb/msrp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/module-avb/msrp.c b/src/modules/module-avb/msrp.c index 5260db095..29f37e64d 100644 --- a/src/modules/module-avb/msrp.c +++ b/src/modules/module-avb/msrp.c @@ -62,7 +62,7 @@ static void notify_talker(struct msrp *msrp, uint64_t now, struct attr *attr, ui struct stream_common *sc; char label[64]; - pw_log_debug("> notify talker advertise: %s", avb_mrp_notify_name(notify)); + pw_log_info("> notify talker advertise: %s", avb_mrp_notify_name(notify)); snprintf(label, sizeof(label), "MSRP talker-adv %s", avb_mrp_notify_name(notify)); avb_log_state(msrp->server, label); if (msrp->server->avb_mode == AVB_MODE_MILAN_V12) { @@ -85,7 +85,7 @@ static void notify_talker(struct msrp *msrp, uint64_t now, struct attr *attr, ui static void notify_talker_failed(struct msrp *msrp, uint64_t now, struct attr *attr, uint8_t notify) { char label[64]; - pw_log_debug("> notify talker failed: %s", avb_mrp_notify_name(notify)); + pw_log_info("> notify talker failed: %s", avb_mrp_notify_name(notify)); snprintf(label, sizeof(label), "MSRP talker-fail %s", avb_mrp_notify_name(notify)); avb_log_state(msrp->server, label); @@ -178,7 +178,7 @@ static void notify_listener(struct msrp *msrp, uint64_t now, struct attr *attr, struct stream *s; char label[64]; - pw_log_debug("> notify listener: %s", avb_mrp_notify_name(notify)); + pw_log_info("> notify listener: %s", avb_mrp_notify_name(notify)); debug_msrp_listener(&attr->attr->attr.listener, attr->attr->param); snprintf(label, sizeof(label), "MSRP listener %s", avb_mrp_notify_name(notify)); avb_log_state(msrp->server, label); @@ -272,7 +272,7 @@ static void debug_msrp_domain(const struct avb_packet_msrp_domain *d) static void notify_domain(struct msrp *msrp, uint64_t now, struct attr *attr, uint8_t notify) { - pw_log_debug("> notify domain: %s", avb_mrp_notify_name(notify)); + pw_log_info("> notify domain: %s", avb_mrp_notify_name(notify)); debug_msrp_domain(&attr->attr->attr.domain); }