Skip to content

Commit

Permalink
Reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
nambrot committed Oct 28, 2023
1 parent 287901d commit a169a6e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rust/hyperlane-base/src/settings/trace/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ impl TracingConfig {
.with_target("hyper", Level::Info)
.with_target("rusoto_core", Level::Info)
.with_target("reqwest", Level::Info)
.with_target("tokio", Level::Debug)
.with_target("tokio_util", Level::Debug)
.with_target("ethers_providers", Level::Debug)
.with_target("h2", Level::Info)
.with_target("tower", Level::Info)
.with_target("tendermint", Level::Info);
.with_target("tendermint", Level::Info)
.with_target("tokio", Level::Debug)
.with_target("tokio_util", Level::Debug)
.with_target("ethers_providers", Level::Debug);
}

if self.level < Level::Trace {
Expand Down

0 comments on commit a169a6e

Please sign in to comment.