summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/dwarf/dwarf_import/src/types.rs4
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()
);