Make mock func calls non printed in releases

This commit is contained in:
Syrus Akbary 2018-12-05 23:53:41 -08:00
parent 27b4015373
commit fbc2fc9c50

View File

@ -145,7 +145,7 @@ pub struct InstanceOptions {
}
extern "C" fn mock_fn() -> i32 {
println!("CALLING MOCKED FUNC");
debug!("CALLING MOCKED FUNC");
return 0;
}