diff options
| author | Mason Reed <mason@vector35.com> | 2026-01-11 11:06:01 -0800 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2026-01-11 11:06:01 -0800 |
| commit | 36f37d301930347b92049c1535ed2a63557771a0 (patch) | |
| tree | e88d2f9d2cef901474ee52880d078bdd5d6884d2 /plugins/dwarf | |
| parent | ed9cc36a6c35f25111539a350485db184b62e5c6 (diff) | |
[DWARF] Fix misc missing imports from `log` => `tracing`
Diffstat (limited to 'plugins/dwarf')
| -rw-r--r-- | plugins/dwarf/dwarf_import/src/types.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/dwarf/dwarf_import/src/types.rs b/plugins/dwarf/dwarf_import/src/types.rs index cb8880ec..7aea966c 100644 --- a/plugins/dwarf/dwarf_import/src/types.rs +++ b/plugins/dwarf/dwarf_import/src/types.rs @@ -82,13 +82,13 @@ pub(crate) fn parse_variable<R: ReaderType>( } } Ok(Operation::ImplicitValue { data }) => { - debug!( + tracing::debug!( "Unhandled operation type ImplicitValue with data length {} for variable", data.len() ); } Ok(Operation::EntryValue { expression }) => { - debug!( + tracing::debug!( "Unhandled operation type EntryValue with expression length {} for variable", expression.len() ); |
