Skip to content

Commit 2289795

Browse files
committed
[chore] remove debug print statements
Signed-off-by: danbugs <[email protected]>
1 parent 35c456c commit 2289795

File tree

1 file changed

+0
-9
lines changed
  • src/hyperlight_host/src/hypervisor

1 file changed

+0
-9
lines changed

src/hyperlight_host/src/hypervisor/kvm.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,7 @@ impl KVMDriver {
8181
log_then_return!("KVM is not present");
8282
};
8383
let kvm = Kvm::new()?;
84-
85-
#[cfg(debug_assertions)]
86-
let _now = std::time::Instant::now();
8784
let vm_fd = kvm.create_vm_with_type(0)?;
88-
#[cfg(debug_assertions)]
89-
println!(
90-
"Time to create_vm_with_type: {:?} from thread {:?}",
91-
_now.elapsed(),
92-
std::thread::current().name()
93-
);
9485

9586
let perm_flags =
9687
MemoryRegionFlags::READ | MemoryRegionFlags::WRITE | MemoryRegionFlags::EXECUTE;

0 commit comments

Comments
 (0)