From 56f107c989192214decde4ca3a3e8446a72af1c9 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Mon, 31 Jul 2023 14:17:40 -0600 Subject: [PATCH] Increase log level --- libraries/net/test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/net/test/CMakeLists.txt b/libraries/net/test/CMakeLists.txt index 8fee186f3..78c9e52b9 100644 --- a/libraries/net/test/CMakeLists.txt +++ b/libraries/net/test/CMakeLists.txt @@ -16,7 +16,7 @@ add_test(NAME test_mock_timer COMMAND test_mock_timer) add_executable(test_shortest_path_routing test_shortest_path_routing.cpp connection_pair.cpp) target_include_directories(test_shortest_path_routing PUBLIC ../include) target_link_libraries(test_shortest_path_routing PUBLIC catch2 psibase Threads::Threads Boost::headers) -add_test(NAME test_shortest_path_routing COMMAND test_shortest_path_routing) +add_test(NAME test_shortest_path_routing COMMAND test_shortest_path_routing --log-filter "Severity >= debug") add_executable(test_consensus test_consensus.cpp test_cft_consensus.cpp test_bft_consensus.cpp test_signatures.cpp mock_timer.cpp test_util.cpp main.cpp) target_include_directories(test_consensus PUBLIC ../include)