diff --git a/zebrad/src/application.rs b/zebrad/src/application.rs index 10f743131..aa7ba5142 100644 --- a/zebrad/src/application.rs +++ b/zebrad/src/application.rs @@ -342,7 +342,11 @@ impl Application for ZebradApp { .as_ref() .expect("config is loaded before register_components"); - let default_filter = if command.verbose { "debug" } else { "info" }; + let default_filter = if command.verbose { + "debug,rpc=trace" + } else { + "info,rpc=trace" + }; let is_server = command .command .as_ref()