summaryrefslogtreecommitdiff
path: root/view/minidump/src/lib.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-12-17 21:23:46 -0500
committerMason Reed <35282038+emesare@users.noreply.github.com>2026-01-11 10:36:01 -0800
commit168a3fd34824adc9c6a606cd144219701f15cccf (patch)
tree9bbac31ece5ea6ab6627998d995a77f7f7e2f8e6 /view/minidump/src/lib.rs
parentca91bc1933976c62d24248f0f7c35af38451ff11 (diff)
[Rust] Replace `log` with `tracing`
- Added more documentation - Replaced global named logger for plugins, fixing the issue when the CU has multiple (e.g. statically linked demo) - Simplified some misc code This is a breaking change, but I believe there is no better time to make it, we cannot continue to use the `log` crate, it is too limited for our needs.
Diffstat (limited to 'view/minidump/src/lib.rs')
-rw-r--r--view/minidump/src/lib.rs12
1 files changed, 4 insertions, 8 deletions
diff --git a/view/minidump/src/lib.rs b/view/minidump/src/lib.rs
index 64aaddd6..00fed601 100644
--- a/view/minidump/src/lib.rs
+++ b/view/minidump/src/lib.rs
@@ -1,8 +1,7 @@
use binaryninja::binary_view::BinaryView;
use binaryninja::command::{register_command, Command};
use binaryninja::custom_binary_view::register_view_type;
-use binaryninja::logger::Logger;
-use log::{debug, LevelFilter};
+use binaryninja::tracing;
mod command;
mod view;
@@ -22,14 +21,11 @@ impl Command for PrintMemoryInformationCommand {
#[no_mangle]
#[allow(non_snake_case)]
pub extern "C" fn CorePluginInit() -> bool {
- Logger::new("Minidump")
- .with_level(LevelFilter::Trace)
- .init();
-
- debug!("Registering minidump binary view type");
+ binaryninja::tracing_init!("Minidump");
+ tracing::debug!("Registering minidump binary view type");
register_view_type("Minidump", "Minidump", view::MinidumpBinaryViewType::new);
- debug!("Registering minidump plugin commands");
+ tracing::debug!("Registering minidump plugin commands");
register_command(
"Minidump\\[DEBUG] Print Minidump Memory Information",
"Print a human-readable description of the contents of the MinidumpMemoryInfoList stream in the loaded minidump",