Comment on Show HN: Pg_replicate – Build Postgres replication applications in RustparentComments−hermanradtke2yI too consider this a footgun.Most applications will have something like tracing_subscriber::registry() .with( tracing_subscriber::EnvFilter::try_from_default_env() .unwrap_or_else(|_| "my_app=info".into()), ) .with(tracing_subscriber::fmt::layer()) .init(); in the `main.rs` which will default the tracing if RUST_LOG env var is not set.−imor80OP2yThanks for trying out, I'll update the code and/or the README to fix this.
Comments
I too consider this a footgun.
Most applications will have something like
in the `main.rs` which will default the tracing if RUST_LOG env var is not set.Thanks for trying out, I'll update the code and/or the README to fix this.