1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 10:12:45 +01:00

Merge pull request #16700 from fjmolinas/pr_mynewt_core_log_level

pkg/mynewt-core: change task start log level
This commit is contained in:
benpicco 2021-08-17 00:00:44 +02:00 committed by GitHub
commit 64aac3a2b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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,