summaryrefslogtreecommitdiff
path: root/rust/plugin_examples/data_renderer/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/plugin_examples/data_renderer/src/lib.rs')
-rw-r--r--rust/plugin_examples/data_renderer/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
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 {});