logging: rename log_process_thread to logging

Keep the name short to make usuable when thread names are enabled.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2018-09-23 11:37:33 -04:00
parent 2f30c5dcb8
commit 1aed3858ac

View File

@ -491,7 +491,7 @@ static void log_process_thread_func(void *dummy1, void *dummy2, void *dummy3)
}
}
K_THREAD_DEFINE(log_process_thread, CONFIG_LOG_PROCESS_THREAD_STACK_SIZE,
K_THREAD_DEFINE(logging, CONFIG_LOG_PROCESS_THREAD_STACK_SIZE,
log_process_thread_func, NULL, NULL, NULL,
CONFIG_LOG_PROCESS_THREAD_PRIO, 0, K_NO_WAIT);
#else