Skip to content

Commit

Permalink
Merge pull request #95 from cmars/chore/remove-optic-log-messages
Browse files Browse the repository at this point in the history
chore: remove unnecessary log messages
  • Loading branch information
cmars committed Dec 10, 2021
2 parents f2c8e59 + 3627e05 commit 4a03319
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions internal/linter/optic/linter.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ func (o *Optic) Match(rcConfig *config.ResourceSet) ([]string, error) {
result = append(result, k)
}
sort.Strings(result)
log.Println(result)
return result, nil
}

Expand Down Expand Up @@ -227,7 +226,6 @@ func (o *Optic) bulkCompare(ctx context.Context, comparisons []comparison, docke
// TODO: link to command line arguments for optic-ci when available.
cmdline := append([]string{"run", "--rm", "-v", inputFile.Name() + ":/input.json"}, dockerArgs...)
cmdline = append(cmdline, o.image, "bulk-compare", "--input", "/input.json")
log.Println(cmdline)
cmd := exec.CommandContext(ctx, "docker", cmdline...)

pipeReader, pipeWriter := io.Pipe()
Expand Down

0 comments on commit 4a03319

Please sign in to comment.