diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3b747b38..3183d4a8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -767,7 +767,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 097d64a0..99033271 100644
--- a/builds/cmake/CMakeLists.txt
+++ b/builds/cmake/CMakeLists.txt
@@ -557,6 +557,7 @@ if (with-tests)
add_test( NAME libbitcoin-explorer-test COMMAND libbitcoin-explorer-test
--run_test=generated,obsolete,offline,config,stub
+ --log_level=warning
--show_progress=no
--detect_memory_leak=0
--report_level=no
diff --git a/builds/msvc/vs2022/libbitcoin-explorer-test/libbitcoin-explorer-test.props b/builds/msvc/vs2022/libbitcoin-explorer-test/libbitcoin-explorer-test.props
index 67239958..7791c437 100644
--- a/builds/msvc/vs2022/libbitcoin-explorer-test/libbitcoin-explorer-test.props
+++ b/builds/msvc/vs2022/libbitcoin-explorer-test/libbitcoin-explorer-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-explorer-test_runner.sh b/libbitcoin-explorer-test_runner.sh
index d98c7846..0ffc3e8e 100755
--- a/libbitcoin-explorer-test_runner.sh
+++ b/libbitcoin-explorer-test_runner.sh
@@ -10,6 +10,7 @@
#==============================================================================
BOOST_UNIT_TEST_OPTIONS=\
"--run_test=generated,obsolete,offline,config,stub "\
+"--log_level=warning "\
"--show_progress=no "\
"--detect_memory_leak=0 "\
"--report_level=no "\