Skip to content

Commit

Permalink
fix: agent log verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-savu committed Jun 25, 2024
1 parent b99920e commit f68319f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/hyperlane-base/src/settings/trace/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ impl TracingConfig {
pub fn start_tracing(&self, metrics: &CoreMetrics) -> Result<console_subscriber::Server> {
let mut target_layer = Targets::new().with_default(self.level);

if self.level < Level::DependencyTrace {
if self.level == Level::Trace {
// Reduce log noise from trusted libraries that we can reasonably assume are working correctly
target_layer = target_layer
.with_target("hyper", Level::Info)
Expand Down

0 comments on commit f68319f

Please sign in to comment.