Skip to content

Commit

Permalink
Merge pull request #562 from shiftstack/fix-log-kv
Browse files Browse the repository at this point in the history
Fix number of args passed to log.Info
  • Loading branch information
adrianchiris authored Dec 20, 2023
2 parents c0a2f9c + 29fb02b commit dcd1a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/v1/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func IsVfSupportedModel(vendorID, deviceID string) bool {
return true
}
}
log.Info("IsVfSupportedModel():", "Unsupported VF model:", "vendorId:", vendorID, "deviceId:", deviceID)
log.Info("IsVfSupportedModel(): found unsupported VF model", "vendorId:", vendorID, "deviceId:", deviceID)
return false
}

Expand Down

0 comments on commit dcd1a55

Please sign in to comment.