We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3da0796 commit f5f8b41Copy full SHA for f5f8b41
app/src/mount/Kconfig
@@ -7,4 +7,8 @@ config MOUNT_THREAD_STACK_SIZE
7
The size of the stack used by the mount thread.
8
The default value is 0x4000 bytes (16kB).
9
10
-endmenu
+module = MOUNT
11
+module-str = mount
12
+source "subsys/logging/Kconfig.template.log_config"
13
+
14
+endmenu
app/src/mount/Mount.cpp
@@ -2,7 +2,7 @@
2
3
#include <zephyr/kernel.h>
4
#include <zephyr/logging/log.h>
5
-LOG_MODULE_REGISTER(Mount);
+LOG_MODULE_REGISTER(Mount, CONFIG_MOUNT_LOG_LEVEL);
6
Mount::Mount() {
LOG_DBG("creating Mount");
0 commit comments