Skip to content

Commit

Permalink
fix(debug-log): stop printing ansi codes to debug log
Browse files Browse the repository at this point in the history
Fixes: #257
  • Loading branch information
zkat committed Apr 20, 2023
1 parent 7b63b07 commit 3c1cd69
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Expand Up @@ -287,6 +287,7 @@ impl Orogene {
.with_timer(tracing_subscriber::fmt::time::uptime())
.with_writer(non_blocking)
.with_target(false)
.with_ansi(false)
.with_filter(targets),
)
.init();
Expand All @@ -305,6 +306,7 @@ impl Orogene {
.with_timer(tracing_subscriber::fmt::time::uptime())
.with_writer(non_blocking)
.with_target(false)
.with_ansi(false)
.with_filter(targets),
)
.init();
Expand Down

0 comments on commit 3c1cd69

Please sign in to comment.