mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-04-06 11:38:12 +00:00
native: Use stderr for logging
Since we will hopefully one day use stdout as a CTK display, use stderr instead for log output, which can be redirected to a file.
This commit is contained in:
parent
ba541fd510
commit
877b059bc7
@ -271,12 +271,12 @@ main(int argc, char **argv)
|
||||
void
|
||||
log_message(char *m1, char *m2)
|
||||
{
|
||||
printf("%s%s\n", m1, m2);
|
||||
fprintf(stderr, "%s%s\n", m1, m2);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
void
|
||||
uip_log(char *m)
|
||||
{
|
||||
printf("%s\n", m);
|
||||
fprintf(stderr, "%s\n", m);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user