fix: missing newline after log msg

This commit is contained in:
Raj Perera 2021-12-27 22:56:00 -05:00 committed by GitHub
parent 3d1d522504
commit 224a54b840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,7 +136,7 @@ func WakeVirtualMachine(mac string) bool {
log.Fatalf("Failed to resume domain: %v", err)
}
default:
fmt.Printf("System %s is in a state that cannot be woken up. State: %d", d.Name, state)
fmt.Printf("System %s is already running or in a state that cannot be woken from. State: %d\n", d.Name, state)
}
}
}