1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/mynewt-core: change task start log level

This commit is contained in:
Francisco Molina 2021-08-03 11:29:23 +02:00
parent 54a76ab2ce
commit fd63142ea2

View File

@ -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,