Skip to content

Commit

Permalink
Merge pull request #30 from flashbots/disable-color
Browse files Browse the repository at this point in the history
Disable coloured logging by default
  • Loading branch information
avalonche authored Oct 31, 2024
2 parents 044fdd3 + 2e6c1df commit 09fe1c4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ async fn main() -> Result<()> {
// Initialize logging
tracing_subscriber::fmt()
.with_env_filter(EnvFilter::new(args.log_level.to_string())) // Set the log level
.with_ansi(false) // Disable colored logging
.init();

let (metrics, handler) = if args.metrics {
Expand Down

0 comments on commit 09fe1c4

Please sign in to comment.