Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/signer_with_send
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Jun 19, 2024
2 parents 139b1a7 + fb2cdaf commit 8bb8049
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/soroban-cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ pub async fn main() {
if let Some(level) = root.global_args.log_level() {
let mut e_filter = EnvFilter::from_default_env()
.add_directive("hyper=off".parse().unwrap())
.add_directive(format!("stellar_cli={level}").parse().unwrap());
.add_directive(format!("stellar_cli={level}").parse().unwrap())
.add_directive(format!("soroban_cli={level}").parse().unwrap());

for filter in &root.global_args.filter_logs {
e_filter = e_filter.add_directive(
Expand Down

0 comments on commit 8bb8049

Please sign in to comment.