modified: src/main.rs

This commit is contained in:
Michael Wain 2024-10-12 18:32:52 +03:00
parent 8e601254bf
commit cb883df4f2

@ -31,7 +31,7 @@ static LOG_FILE: std::sync::Mutex<Option<File>> = std::sync::Mutex::new(None);
pub fn log2java(text: String) {
if let Ok(mut l) = LOG_FILE.lock() {
if let Some(ff) = l.take() {
if let Some(mut ff) = l.take() {
ff.write_all(text.as_bytes());
//jni::FridaLib::traceFromNative(l.unwrap(), text);
}