Set syslog priority to 'debug' for all tests.

This commit is contained in:
Chris Johns 2016-07-06 17:08:07 +10:00
parent 761ae78e05
commit b8c7bf933c
2 changed files with 10 additions and 0 deletions

View File

@ -39,6 +39,11 @@ rtems_task Init(
{
rtems_status_code sc;
/*
* Default the syslog priority to 'debug' to aid developers.
*/
rtems_bsd_setlogpriority("debug");
puts( "*** " TEST_NAME " TEST ***" );
/*

View File

@ -238,6 +238,11 @@ Init(rtems_task_argument arg)
char *ifname;
#endif
/*
* Default the syslog priority to 'debug' to aid developers.
*/
rtems_bsd_setlogpriority("debug");
(void)arg;
puts("*** " TEST_NAME " TEST ***");