diff --git a/virtcontainers/fc.go b/virtcontainers/fc.go index 09fda7b160..ed3a6aac53 100644 --- a/virtcontainers/fc.go +++ b/virtcontainers/fc.go @@ -612,7 +612,6 @@ func (fc *firecracker) fcSetLogger() error { Level: &fcLogLevel, LogFifo: &jailedLogFifo, MetricsFifo: &jailedMetricsFifo, - Options: []string{}, } return err diff --git a/virtcontainers/pkg/firecracker/client/models/logger.go b/virtcontainers/pkg/firecracker/client/models/logger.go index c656b42ba9..c2e519719f 100644 --- a/virtcontainers/pkg/firecracker/client/models/logger.go +++ b/virtcontainers/pkg/firecracker/client/models/logger.go @@ -31,9 +31,6 @@ type Logger struct { // Required: true MetricsFifo *string `json:"metrics_fifo"` - // Additional logging options. Only "LogDirtyPages" is supported. - Options []string `json:"options"` - // Whether or not to output the level in the logs. ShowLevel *bool `json:"show_level,omitempty"` diff --git a/virtcontainers/pkg/firecracker/firecracker.yaml b/virtcontainers/pkg/firecracker/firecracker.yaml index 5f7fcbdc8f..5df8a63e72 100644 --- a/virtcontainers/pkg/firecracker/firecracker.yaml +++ b/virtcontainers/pkg/firecracker/firecracker.yaml @@ -5,7 +5,7 @@ info: The API is accessible through HTTP calls on specific URLs carrying JSON modeled data. The transport medium is a Unix Domain Socket. - version: 0.19.0 + version: 0.21.1 termsOfService: "" contact: email: "compute-capsule@amazon.com" @@ -508,12 +508,6 @@ definitions: type: boolean description: Whether or not to include the file path and line number of the log's origin. default: false - options: - type: array - items: - type: string - description: Additional logging options. Only "LogDirtyPages" is supported. - default: [] MachineConfiguration: type: object