We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
use log::*
It shows up with debug! and warn!, but does not import them, resulting in errors like:
debug!
warn!
error: cannot find macro `debug` in this scope --> src/soap.rs:368:21 | 368 | debug!("SOAP Request: {}", body); | ^^^^^ | = note: consider importing this macro: log::debug
The text was updated successfully, but these errors were encountered:
Latest code in the yaserde_08 branch adds this use statement to the generated code: use log::{debug, warn};
yaserde_08
use
use log::{debug, warn};
Sorry, something went wrong.
use log::{warn, debug}; is present in the toplevel module, but not in the bindings submodule.
use log::{warn, debug};
bindings
No branches or pull requests
It shows up with
debug!
andwarn!
, but does not import them, resulting in errors like:The text was updated successfully, but these errors were encountered: