-
Notifications
You must be signed in to change notification settings - Fork 59
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
Question : how to use debug!(); ? #426
Comments
I mean ... |
There are no something special. It is the same old For example in cpp_tests: flapigen-rs/cpp_tests/build.rs Line 6 in b6b10fe
So you need to run build with RUST_LOG=debug to see debug output, details you can find in env_logger documentation. |
OK. Thx. Found it. For those who will read this, in my
With a
nothing happens on stdout. But one can find the logs in
Note |
As I wrote before you need "-vv" to see stdout of build script.
this is overkill, you need just |
I'm currently trying to play with flapigen internals, let's say, for some experiment.
I'm sure it's a rookie question, but how to use debug!() and mainly, how to see its output ?
Is there anything we have to initialise ?
I suppose there is something to add in my library's
build.rs
, right ?The text was updated successfully, but these errors were encountered: