diff options
| author | Mason Reed <mason@vector35.com> | 2025-12-18 17:14:06 -0500 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2026-01-11 10:36:01 -0800 |
| commit | 6f75ca031aa7e8f7e1c706d1880b202137b1996f (patch) | |
| tree | 1fe8e778f98e4390a1075fc402047e23f2128934 /rust/plugin_examples/data_renderer | |
| parent | 168a3fd34824adc9c6a606cd144219701f15cccf (diff) | |
[Rust] Enter more session scoped tracing spans for debug info and binary view callbacks
Diffstat (limited to 'rust/plugin_examples/data_renderer')
| -rw-r--r-- | rust/plugin_examples/data_renderer/Cargo.toml | 2 | ||||
| -rw-r--r-- | rust/plugin_examples/data_renderer/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rust/plugin_examples/data_renderer/Cargo.toml b/rust/plugin_examples/data_renderer/Cargo.toml index 7ac32dfd..6c9aa63b 100644 --- a/rust/plugin_examples/data_renderer/Cargo.toml +++ b/rust/plugin_examples/data_renderer/Cargo.toml @@ -10,4 +10,4 @@ crate-type = ["cdylib"] binaryninjacore-sys = { path = "../../binaryninjacore-sys" } binaryninja = { path = "../.." } uuid = "1.18.1" -log = "0.4.27" +tracing = "0.1"
\ No newline at end of file diff --git a/rust/plugin_examples/data_renderer/src/lib.rs b/rust/plugin_examples/data_renderer/src/lib.rs index 97b81f23..e9c6b354 100644 --- a/rust/plugin_examples/data_renderer/src/lib.rs +++ b/rust/plugin_examples/data_renderer/src/lib.rs @@ -101,7 +101,7 @@ impl CustomDataRenderer for UuidDataRenderer { pub unsafe extern "C" fn CorePluginInit() -> bool { // Initialize logging binaryninja::tracing_init!(); - binaryninja::tracing::info!("Core plugin initialized"); + tracing::info!("Core plugin initialized"); // Register data renderer register_data_renderer(UuidDataRenderer {}); |
