modified: src/main.rs
Some checks failed
gitea/Frida-android-native/pipeline/head There was a failure building this commit

This commit is contained in:
Michael Wain 2024-10-13 02:05:55 +03:00
parent cb883df4f2
commit 7a52f988e9

View File

@ -33,6 +33,8 @@ pub fn log2java(text: String) {
if let Ok(mut l) = LOG_FILE.lock() {
if let Some(mut ff) = l.take() {
ff.write_all(text.as_bytes());
ff.write_all("\n");
ff.flush();
//jni::FridaLib::traceFromNative(l.unwrap(), text);
}
}