Skip to content

Commit

Permalink
json
Browse files Browse the repository at this point in the history
  • Loading branch information
einar-polygon committed Oct 9, 2024
1 parent 339f6af commit 61a6b6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zero/src/bin/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ async fn main() -> anyhow::Result<()> {
// With the default configuration trace information is written
// to stdout, but we already use stdout to write our payload (the witness).
.with_writer(std::io::stderr)
.json()
.with_ansi(false)
.compact()
.with_filter(EnvFilter::from_default_env()),
)
.init();
Expand Down
2 changes: 1 addition & 1 deletion zero/src/tracing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub fn init() {
.with(
tracing_subscriber::fmt::layer()
.with_ansi(false)
.compact()
.json()
.with_filter(EnvFilter::from_default_env()),
)
.init();
Expand Down

0 comments on commit 61a6b6a

Please sign in to comment.