From 5c4238e0ee77faac85203748ef3eddd417038f4f Mon Sep 17 00:00:00 2001 From: Alwin Berger Date: Mon, 11 Apr 2022 22:59:06 +0200 Subject: [PATCH] remove output from clock observer --- libafl_qemu/src/clock.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/libafl_qemu/src/clock.rs b/libafl_qemu/src/clock.rs index 3a9cdd803a..3b12dce3dc 100644 --- a/libafl_qemu/src/clock.rs +++ b/libafl_qemu/src/clock.rs @@ -122,7 +122,6 @@ where fn post_exec(&mut self, _state: &mut S, _input: &I) -> Result<(), Error> { unsafe { self.last_runtime = emu::libafl_get_clock() }; - #[cfg(debug_assertions)] println!("Observer Clock: {}",self.last_runtime()); Ok(()) } }