Skip to content

Commit

Permalink
fix: remove LegacyStageImageContainer accidental debug messages
Browse files Browse the repository at this point in the history
Signed-off-by: Timofey Kirillov <timofey.kirillov@flant.com>
  • Loading branch information
distorhead committed Jul 7, 2022
1 parent 36b2ea7 commit e70d8b6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions pkg/container_backend/legacy_stage_image_container.go
Expand Up @@ -329,8 +329,6 @@ func (c *LegacyStageImageContainer) commit(ctx context.Context) (string, error)
return "", err
}

fmt.Printf("!!! LegacyStageImageContainer.commit Changes:%#v\n", commitChanges)

commitOptions := types.ContainerCommitOptions{Changes: commitChanges}
id, err := docker.ContainerCommit(ctx, c.name, commitOptions)
if err != nil {
Expand Down
2 changes: 0 additions & 2 deletions pkg/container_backend/legacy_stage_image_container_options.go
Expand Up @@ -231,8 +231,6 @@ func (co *LegacyStageImageContainerOptions) toCommitChanges(opts LegacyCommitCha
func (co *LegacyStageImageContainerOptions) prepareCommitChanges(ctx context.Context, opts LegacyCommitChangeOptions) ([]string, error) {
var args []string

fmt.Printf("-- LegacyStageImageContainerOptions.prepareCommitChanges opts.ExactValues=%v\n", opts.ExactValues)

for _, volume := range co.Volume {
args = append(args, fmt.Sprintf("VOLUME %s", escapeVolume(volume, opts.ExactValues)))
}
Expand Down

0 comments on commit e70d8b6

Please sign in to comment.