summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuite/include/rtems/bsd/test/default-init.h5
-rw-r--r--testsuite/include/rtems/bsd/test/default-network-init.h5
2 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/include/rtems/bsd/test/default-init.h b/testsuite/include/rtems/bsd/test/default-init.h
index ab2ab3a4..32ae1d14 100644
--- a/testsuite/include/rtems/bsd/test/default-init.h
+++ b/testsuite/include/rtems/bsd/test/default-init.h
@@ -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 ***" );
/*
diff --git a/testsuite/include/rtems/bsd/test/default-network-init.h b/testsuite/include/rtems/bsd/test/default-network-init.h
index d009f0f6..cea70f2d 100644
--- a/testsuite/include/rtems/bsd/test/default-network-init.h
+++ b/testsuite/include/rtems/bsd/test/default-network-init.h
@@ -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 ***");