-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename RUST_LOG
to RUSTC_LOG
#60401
Rename RUST_LOG
to RUSTC_LOG
#60401
Conversation
LGTM, thanks! @bors r+ rollup |
📌 Commit bf4d0ad has been approved by |
Rename `RUST_LOG` to `RUSTC_LOG` cc: rust-lang#57985 I think we should also change these submodules: - rustc-guide - Cargo (rename to `CARGO_LOG`, cc: rust-lang/cargo#6605) - miri - rls - rustfmt r? @davidtwco
Rename `RUST_LOG` to `RUSTC_LOG` cc: rust-lang#57985 I think we should also change these submodules: - rustc-guide - Cargo (rename to `CARGO_LOG`, cc: rust-lang/cargo#6605, rust-lang/cargo#6189) - miri - rls - rustfmt r? @davidtwco
Rollup of 12 pull requests Successful merges: - #59928 (Make deprecation lint `ambiguous_associated_items` deny-by-default) - #60220 (report fatal errors during doctest parsing) - #60373 (Tidy: ensure lang features are sorted by since) - #60388 (Disallow non-explicit elided lifetimes in async fn) - #60393 ( Do not suggest incorrect syntax on pattern type error due to borrow) - #60401 (Rename `RUST_LOG` to `RUSTC_LOG`) - #60409 (Require a trait in the bounds of existential types) - #60455 (Resolve match arm ty when arms diverge) - #60457 (Const prop refactoring) - #60467 (Avoid repeated interning of static strings.) - #60478 (minor compiler doc tweaks) - #60501 (Propagate mutability from arguments to local bindings in async fn) Failed merges: r? @ghost
Changed RUST_LOG usage to CARGO_LOG to avoid confusion. This is a repost of #6605 now that rust-lang/rust#60401 has been merged. This also includes a fix in `TargetInfo::new` to remove the **RUSTC_LOG** var.
Should this be relnotes? I just lost a lot of time trying to figure out why my logging commands suddenly wouldn't work any more... |
Miri is listed in there but did not get changed (I'll take care of that now). Did someone go through the others in that list? |
Yes, I agree with. Some may be confused without notes. |
cc: #57985
I think we should also change these submodules:
CARGO_LOG
, cc: Changed RUST_LOG usage to CARGO_LOG to avoid confusion. cargo#6605, Cargo should use a variable other than RUST_LOG for env_logger. cargo#6189)r? @davidtwco