From 9207a1bcd771a7b562303937ff73b34d678e3dfc Mon Sep 17 00:00:00 2001 From: Kiara Navarro Date: Mon, 24 Mar 2025 19:48:02 -0300 Subject: [PATCH] fs: update module logging registration All modules registered in fs subsystem uses: LOG_MODULE_REGISTER(, ) Lets update fs to follow same logic. Signed-off-by: Kiara Navarro --- subsys/fs/fs.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/subsys/fs/fs.c b/subsys/fs/fs.c index d9117f6d085..5df0c13236b 100644 --- a/subsys/fs/fs.c +++ b/subsys/fs/fs.c @@ -16,10 +16,8 @@ #include #include - -#define LOG_LEVEL CONFIG_FS_LOG_LEVEL #include -LOG_MODULE_REGISTER(fs); +LOG_MODULE_REGISTER(fs, CONFIG_FS_LOG_LEVEL); /* list of mounted file systems */ static sys_dlist_t fs_mnt_list = SYS_DLIST_STATIC_INIT(&fs_mnt_list);