diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7851a974..a9383dbc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -773,7 +773,7 @@ jobs:
$BC_TEST_SINGLETON = $BC_TEST_EXES.FullName;
Write-Host "Executing $BC_TEST_SINGLETON $env:BOOST_UNIT_TEST_OPTIONS" -ForegroundColor Yellow;
try {
- Invoke-Expression "$BC_TEST_SINGLETON --run_test=${{ matrix.tests }} $env:BOOST_UNIT_TEST_OPTIONS"
+ Invoke-Expression "$BC_TEST_SINGLETON --log_level=warning --run_test=${{ matrix.tests }} $env:BOOST_UNIT_TEST_OPTIONS"
}
catch {
$ERR = $_;
diff --git a/builds/cmake/CMakeLists.txt b/builds/cmake/CMakeLists.txt
index 3032b5a4..c8a37fd7 100644
--- a/builds/cmake/CMakeLists.txt
+++ b/builds/cmake/CMakeLists.txt
@@ -320,6 +320,7 @@ if (with-tests)
add_test( NAME libbitcoin-server-test COMMAND libbitcoin-server-test
--run_test=*
+ --log_level=warning
--show_progress=no
--detect_memory_leak=0
--report_level=no
diff --git a/builds/msvc/vs2022/libbitcoin-server-test/libbitcoin-server-test.props b/builds/msvc/vs2022/libbitcoin-server-test/libbitcoin-server-test.props
index ea739a26..77306830 100644
--- a/builds/msvc/vs2022/libbitcoin-server-test/libbitcoin-server-test.props
+++ b/builds/msvc/vs2022/libbitcoin-server-test/libbitcoin-server-test.props
@@ -15,7 +15,7 @@
BOOST_TEST_DYN_LINK;%(PreprocessorDefinitions)
- "$(TargetPath)" --run_test=* --show_progress=no --build_info=yes
+ "$(TargetPath)" --log_level=warning --run_test=* --show_progress=no --build_info=yes
diff --git a/libbitcoin-server-test_runner.sh b/libbitcoin-server-test_runner.sh
index 15dfb412..8a47d0a9 100755
--- a/libbitcoin-server-test_runner.sh
+++ b/libbitcoin-server-test_runner.sh
@@ -10,6 +10,7 @@
#==============================================================================
BOOST_UNIT_TEST_OPTIONS=\
"--run_test=* "\
+"--log_level=warning "\
"--show_progress=no "\
"--detect_memory_leak=0 "\
"--report_level=no "\