Open jhartzell42 opened 2 years ago
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
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};
use log::{warn, debug}; is present in the toplevel module, but not in the bindings submodule.
use log::{warn, debug};
bindings
It shows up with
debug!
andwarn!
, but does not import them, resulting in errors like: