diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ffi.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -39,7 +39,7 @@ pub extern "C" fn dome_key_logger_init() {          .color(stderrlog::ColorChoice::Never)          .timestamp(stderrlog::Timestamp::Millisecond)          .init() -        .unwrap(); +        .unwrap_or_else(|e| dkeprintln!("{}", e));  }  #[no_mangle] | 
