From dd75fc39c3088d8bcb5f564517541b3abf2184c9 Mon Sep 17 00:00:00 2001 From: Andries Kruithof Date: Wed, 4 Dec 2024 12:28:55 +0100 Subject: [PATCH] Bluetooth: Audio: add bt_ prefix when registering logging module Add the bt_ prefix when registering logging for the media_proxy module, to be consistent with what the other modules in bluetooth/audio do Note that the bap_usb module shall not have the bt_ prefix Signed-off-by: Andries Kruithof --- subsys/bluetooth/audio/media_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/bluetooth/audio/media_proxy.c b/subsys/bluetooth/audio/media_proxy.c index 7e427203ec3..7f72bd465fb 100644 --- a/subsys/bluetooth/audio/media_proxy.c +++ b/subsys/bluetooth/audio/media_proxy.c @@ -22,7 +22,7 @@ #include "media_proxy_internal.h" #include "mcs_internal.h" -LOG_MODULE_REGISTER(media_proxy, CONFIG_MCTL_LOG_LEVEL); +LOG_MODULE_REGISTER(bt_media_proxy, CONFIG_MCTL_LOG_LEVEL); /* Media player */ struct media_player {