Skip to content

Commit

Permalink
[log] switch fields order (#1403)
Browse files Browse the repository at this point in the history
  • Loading branch information
dntczdx committed Oct 26, 2020
1 parent 6349e96 commit 4f0f07c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli_tools/common/utils/logging/service/log_entry.go
Expand Up @@ -260,12 +260,12 @@ type OutputInfo struct {

// InspectionResults contains metadata determined using automated inspection
type InspectionResults struct {
// UEFIBootable indicates whether the disk is bootable with UEFI.
UEFIBootable bool `json:"uefi_bootable,omitempty"`

// BIOSBootable indicates whether the disk is bootable with BIOS.
BIOSBootable bool `json:"bios_bootable,omitempty"`

// UEFIBootable indicates whether the disk is bootable with UEFI.
UEFIBootable bool `json:"uefi_bootable,omitempty"`

// RootFS indicates the file system type of the partition containing
// the root directory ("/").
RootFS string `json:"root_fs,omitempty"`
Expand Down

0 comments on commit 4f0f07c

Please sign in to comment.