diff --git a/Makefile.toml b/Makefile.toml index 8b1a88707bb7..6db1dbb604b1 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -90,9 +90,9 @@ if ${is_not_ci} no_rust_log = not ${rust_log} if ${no_rust_log} - set_env RUST_LOG "pgwire_query_log=info,hyper::client::connect::http=info" + set_env RUST_LOG "pgwire_query_log=info" else - set_env RUST_LOG "pgwire_query_log=info,hyper::client::connect::http=info,${rust_log}" + set_env RUST_LOG "pgwire_query_log=info,${rust_log}" end end diff --git a/src/utils/runtime/src/logger.rs b/src/utils/runtime/src/logger.rs index 7dd834afbcbd..7cc4194600b0 100644 --- a/src/utils/runtime/src/logger.rs +++ b/src/utils/runtime/src/logger.rs @@ -216,9 +216,7 @@ pub fn init_risingwave_logger(settings: LoggerSettings) { .with_target("sled", Level::INFO) .with_target("cranelift", Level::INFO) .with_target("wasmtime", Level::INFO) - .with_target("sqlx", Level::WARN) - // Expose hyper connection socket addr log. - .with_target("hyper::client::connect::http", Level::DEBUG); + .with_target("sqlx", Level::WARN); // For all other crates, apply default level depending on the deployment and `debug_assertions` flag. let default_level = match deployment {