Skip to content

Commit

Permalink
Remove RUST_LOG hint
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden committed Mar 1, 2024
1 parent e5bb0ef commit 514e0ac
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions neqo-client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -957,10 +957,6 @@ fn qlog_new(args: &Args, hostname: &str, cid: &ConnectionId) -> Res<NeqoQlog> {
async fn main() -> Res<()> {
init();

if std::env::var("RUST_LOG").is_err() {
eprintln!("Set RUST_LOG=<level> for logs.")
}

let mut args = Args::parse();
args.update_for_tests();

Expand Down
4 changes: 0 additions & 4 deletions neqo-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -715,10 +715,6 @@ enum Ready {
async fn main() -> Result<(), io::Error> {
const HQ_INTEROP: &str = "hq-interop";

if std::env::var("RUST_LOG").is_err() {
eprintln!("Set RUST_LOG=<level> for logs.")
}

let mut args = Args::parse();
assert!(!args.key.is_empty(), "Need at least one key");

Expand Down

0 comments on commit 514e0ac

Please sign in to comment.