We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tokio_postgres
1 parent 7ecdc11 commit 81ba756Copy full SHA for 81ba756
src/util/tracing.rs
@@ -63,7 +63,8 @@ pub fn event_filter(metadata: &Metadata<'_>) -> EventFilter {
63
pub fn init_for_test() {
64
let env_filter = EnvFilter::builder()
65
.with_default_directive(LevelFilter::DEBUG.into())
66
- .from_env_lossy();
+ .from_env_lossy()
67
+ .add_directive("tokio_postgres=info".parse().unwrap());
68
69
let _ = tracing_subscriber::fmt()
70
.compact()
0 commit comments