From 46f144ac6793183aaa020ed63d11855332391c76 Mon Sep 17 00:00:00 2001 From: Daniel Karzel Date: Sat, 10 Apr 2021 09:16:06 +1000 Subject: [PATCH] Switch monero-rpc to debug in tests To be able to see CI monero RPC errors. --- swap/tests/harness/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/tests/harness/mod.rs b/swap/tests/harness/mod.rs index 9549d785..8229d314 100644 --- a/swap/tests/harness/mod.rs +++ b/swap/tests/harness/mod.rs @@ -482,7 +482,7 @@ where let cli = Cli::default(); let _guard = tracing_subscriber::fmt() - .with_env_filter("warn,swap=debug,monero_harness=debug,monero_rpc=info,bitcoin_harness=info,testcontainers=info") + .with_env_filter("warn,swap=debug,monero_harness=debug,monero_rpc=debug,bitcoin_harness=info,testcontainers=info") .with_test_writer() .set_default();