1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

Reenabled logging for QEmu

This commit is contained in:
bytesnake 2017-07-15 14:24:07 +02:00
parent 71d004d315
commit 9f8357f564

View file

@ -166,8 +166,12 @@ impl Isle for QEmu {
} else {
Err(Error::InternalError)
}*/
let mut file = File::open(&self.tmp_file).unwrap();
let mut content = String::new();
Err(Error::InternalError)
file.read_to_string(&mut content);
Ok(content)
}
fn stop(&mut self) -> Result<i32> {