Skip to content

Commit

Permalink
[build] Don't include DMG mount status in ready() check
Browse files Browse the repository at this point in the history
Signed-off-by: naturecodevoid <[email protected]>
  • Loading branch information
amsam0 authored Oct 20, 2023
1 parent 095f0b4 commit 03ad744
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ fn ready() -> bool {
let dmg_mounted = DMG_MOUNTED.load(Ordering::Relaxed);
let started = STARTED.load(Ordering::Relaxed);

if !device_connection || !device_exists || !heartbeat_success || !dmg_mounted || !started {
if !device_connection || !device_exists || !heartbeat_success || !started {
info!(
"minimuxer is not ready. device connection succeeded: {}; at least 1 device exists: {}; last heartbeat was a success: {}; developer disk image is mounted: {}; started: {}",
"minimuxer is not ready. device connection succeeded: {}; at least 1 device exists: {}; last heartbeat was a success: {}; developer disk image is mounted (not counted): {}; started: {}",
device_connection,
device_exists,
heartbeat_success,
Expand Down

0 comments on commit 03ad744

Please sign in to comment.