Skip to content

Commit 5ff67d6

Browse files
authored
fix(ci): restore log level to debug
1 parent cb7b967 commit 5ff67d6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/validation/periman/periman.ino

+4-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void onReceive_cb(void) {
6262

6363
// This function is called by before each test is run
6464
void setup_test(String test_name, int8_t rx_pin = UART1_RX_DEFAULT, int8_t tx_pin = UART1_TX_DEFAULT) {
65-
log_d("Setting up %s test", test_name.c_str());
65+
log_v("Setting up %s test", test_name.c_str());
6666

6767
current_test = test_name;
6868
uart1_rx_pin = rx_pin;
@@ -74,12 +74,12 @@ void setup_test(String test_name, int8_t rx_pin = UART1_RX_DEFAULT, int8_t tx_pi
7474
Serial1.setPins(uart1_rx_pin, uart1_tx_pin);
7575
uart_internal_loopback(1, true);
7676
delay(100);
77-
log_d("Running %s test", test_name.c_str());
77+
log_v("Running %s test", test_name.c_str());
7878
}
7979

8080
// This function is called after each test is run
8181
void teardown_test(void) {
82-
log_d("Tearing down %s test", current_test.c_str());
82+
log_v("Tearing down %s test", current_test.c_str());
8383
if (test_executed) {
8484
pinMode(uart1_rx_pin, INPUT_PULLUP);
8585
pinMode(uart1_tx_pin, OUTPUT);
@@ -96,7 +96,7 @@ void teardown_test(void) {
9696
Serial1.println(" test: This should be printed");
9797
Serial1.flush();
9898

99-
log_d("Finished %s test", current_test.c_str());
99+
log_v("Finished %s test", current_test.c_str());
100100
}
101101

102102
/* Test functions */

0 commit comments

Comments
 (0)