Skip to content

Commit

Permalink
chore: expose hyper client connect socket address debug log (#14227) (#…
Browse files Browse the repository at this point in the history
…14234)

Co-authored-by: Croxx <[email protected]>
  • Loading branch information
github-actions[bot] and MrCroxx authored Dec 27, 2023
1 parent f465540 commit 0e59c2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/utils/runtime/src/logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ pub fn init_risingwave_logger(settings: LoggerSettings) {
.with_target("isahc", Level::WARN)
.with_target("console_subscriber", Level::WARN)
.with_target("reqwest", Level::WARN)
.with_target("sled", Level::INFO);
.with_target("sled", Level::INFO)
// Expose hyper connection socket addr log.
.with_target("hyper::client::connect::http", Level::DEBUG);

// For all other crates, apply default level depending on the deployment and `debug_assertions` flag.
let default_level = match deployment {
Expand Down

0 comments on commit 0e59c2d

Please sign in to comment.