-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Log messages from other crates are not visible when running rustdoc #46383
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
Comments
I suspect the blame lies somewhere within rustc_driver, but I don't know for sure. |
Aaron1011
added a commit
to Aaron1011/rust
that referenced
this issue
Nov 29, 2017
We want librustdoc to pickup the env_logger dependency from the sysroot. This ensures that the same copy of env_logger is used for both internal crates (e.g. librustc_driver, libsyntax) and librustdoc Closes rust-lang#46383
arielb1
pushed a commit
to arielb1/rust
that referenced
this issue
Nov 30, 2017
…imulacrum Remove librustdoc dependency on env_logger We want librustdoc to pickup the env_logger dependency from the sysroot. This ensures that the same copy of env_logger is used for both internal crates (e.g. librustc_driver, libsyntax) and librustdoc Closes rust-lang#46383
arielb1
pushed a commit
to arielb1/rust
that referenced
this issue
Nov 30, 2017
…imulacrum Remove librustdoc dependency on env_logger We want librustdoc to pickup the env_logger dependency from the sysroot. This ensures that the same copy of env_logger is used for both internal crates (e.g. librustc_driver, libsyntax) and librustdoc Closes rust-lang#46383
arielb1
pushed a commit
to arielb1/rust
that referenced
this issue
Nov 30, 2017
…imulacrum Remove librustdoc dependency on env_logger We want librustdoc to pickup the env_logger dependency from the sysroot. This ensures that the same copy of env_logger is used for both internal crates (e.g. librustc_driver, libsyntax) and librustdoc Closes rust-lang#46383
arielb1
pushed a commit
to arielb1/rust
that referenced
this issue
Nov 30, 2017
…imulacrum Remove librustdoc dependency on env_logger We want librustdoc to pickup the env_logger dependency from the sysroot. This ensures that the same copy of env_logger is used for both internal crates (e.g. librustc_driver, libsyntax) and librustdoc Closes rust-lang#46383
kennytm
added a commit
to kennytm/rust
that referenced
this issue
Dec 1, 2017
…imulacrum Remove librustdoc dependency on env_logger We want librustdoc to pickup the env_logger dependency from the sysroot. This ensures that the same copy of env_logger is used for both internal crates (e.g. librustc_driver, libsyntax) and librustdoc Closes rust-lang#46383
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When invoking a locally-built
rustc
orrustdoc
compiled with debug assertions, debug messages can be enabled by setting the environment variableRUST_LOG=debug
.When invoking
rustc
withRUST_LOG=debug
, log message will be displayed from all internal crates (e.g.librustc
,libsynax
) as expected. However, when invokingrustdoc
with RUST_LOG=debug
, only messages fromlibrustdoc
are displayed, despite many other internal crates being used byrustdoc
.The text was updated successfully, but these errors were encountered: