From fd63142ea232801abb217b1f7d64d7ee8fa50de7 Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Tue, 3 Aug 2021 11:29:23 +0200 Subject: [PATCH] pkg/mynewt-core: change task start log level --- pkg/mynewt-core/contrib/task.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkg/mynewt-core/contrib/task.c b/pkg/mynewt-core/contrib/task.c index f4d7bad184..e6e4435925 100644 --- a/pkg/mynewt-core/contrib/task.c +++ b/pkg/mynewt-core/contrib/task.c @@ -21,9 +21,6 @@ #include "os/os_task.h" #include "thread.h" -#ifndef LOG_LEVEL -#define LOG_LEVEL LOG_INFO -#endif #include "log.h" #ifdef __cplusplus @@ -36,7 +33,7 @@ int os_task_init(struct os_task *t, const char *name, os_task_func_t func, { (void) sanity_itvl; - LOG_INFO("[mynewt-core]: starting thread %s\n", name); + LOG_DEBUG("[mynewt-core]: starting thread %s\n", name); kernel_pid_t pid = thread_create(stack_bottom, (int) stack_size, prio, THREAD_CREATE_STACKTEST,