summaryrefslogtreecommitdiff
path: root/view/bintxt/src
diff options
context:
space:
mode:
Diffstat (limited to 'view/bintxt/src')
-rw-r--r--view/bintxt/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/bintxt/src/lib.rs b/view/bintxt/src/lib.rs
index 96cd1835..fbf3682d 100644
--- a/view/bintxt/src/lib.rs
+++ b/view/bintxt/src/lib.rs
@@ -12,7 +12,7 @@ use std::ops::Range;
#[no_mangle]
#[allow(non_snake_case)]
pub extern "C" fn CorePluginInit() -> bool {
- binaryninja::logger::init(log::LevelFilter::Error).expect("Unable to initialize logger");
+ binaryninja::logger::init(log::LevelFilter::Error);
binaryninja::custombinaryview::register_view_type(c"ti-txt", c"TI-TXT", |core| {
TiTxtViewConstructor { core }