#include "proc_p.h"
#include "proc.h"
-#include "cfg/cfg_arch.h" // ARCH_EMUL
#include "cfg/cfg_proc.h"
+#define LOG_LEVEL KERN_LOG_LEVEL
+#define LOG_FORMAT KERN_LOG_FORMAT
+#include <cfg/log.h>
+
+#include "cfg/cfg_arch.h" // ARCH_EMUL
#include "cfg/cfg_monitor.h"
#include <cfg/macros.h> // ROUND_UP2
#include <cfg/module.h>
#if CONFIG_KERN_HEAP
bool free_stack = false;
#endif
- TRACEMSG("name=%s", name);
+ LOG_INFO("name=%s", name);
#if (ARCH & ARCH_EMUL)
/* Ignore stack provided by caller and use the large enough default instead. */
*/
void proc_exit(void)
{
- TRACEMSG("%p:%s", CurrentProcess, proc_currentName());
+ LOG_INFO("%p:%s", CurrentProcess, proc_currentName());
#if CONFIG_KERN_MONITOR
monitor_remove(CurrentProcess);