From 36f37d301930347b92049c1535ed2a63557771a0 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 11 Jan 2026 11:06:01 -0800 Subject: [DWARF] Fix misc missing imports from `log` => `tracing` --- plugins/dwarf/dwarf_import/src/types.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') 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( } } 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() ); -- cgit v1.3.1