mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 14:53:47 +08:00
sched/: Change some *err() message to *info() messages if what was a *dbg() message does not indicate and error condition.
This commit is contained in:
@@ -133,7 +133,7 @@ int os_idle_task(int argc, FAR char *argv[])
|
||||
{
|
||||
/* Enter the IDLE loop */
|
||||
|
||||
serr("CPU%d: Beginning Idle Loop\n", this_cpu());
|
||||
sinfo("CPU%d: Beginning Idle Loop\n", this_cpu());
|
||||
|
||||
for (; ; )
|
||||
{
|
||||
|
||||
@@ -372,7 +372,7 @@ void os_start(void)
|
||||
#endif
|
||||
int i;
|
||||
|
||||
sllerr("Entry\n");
|
||||
sllinfo("Entry\n");
|
||||
|
||||
/* Boot up is complete */
|
||||
|
||||
@@ -797,7 +797,7 @@ void os_start(void)
|
||||
/* The IDLE Loop **********************************************************/
|
||||
/* When control is return to this point, the system is idle. */
|
||||
|
||||
serr("CPU0: Beginning Idle Loop\n");
|
||||
sinfo("CPU0: Beginning Idle Loop\n");
|
||||
for (; ; )
|
||||
{
|
||||
/* Perform garbage collection (if it is not being done by the worker
|
||||
|
||||
Reference in New Issue
Block a user