Skip to content

Commit

Permalink
Merge pull request #227 from galasa-dev/mcobbett-image-rendering-stil…
Browse files Browse the repository at this point in the history
…l-too-noisy

Remove some logging statements. We get lots of detail if things fail anyway
  • Loading branch information
techcobweb authored Apr 4, 2024
2 parents cf1ad85 + 99129ab commit 4a469ad
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions pkg/images/imageExpander.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,6 @@ func (expander *ImageExpanderImpl) calculateTargetImagePaths(gzFilePath string)

// Roll together all the parts of the files to get the folder and the file
desiredImageFolderPath = strings.Join(filePathParts[:len(filePathParts)-1], separator)

log.Printf("Expanding gzFile %s to folder %s\n", gzFilePath, desiredImageFolderPath)

}
}
return desiredImageFolderPath, err
Expand Down
3 changes: 0 additions & 3 deletions pkg/images/imageFileWriter.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
package images

import (
"log"

"github.com/galasa-dev/cli/pkg/files"
)

Expand Down Expand Up @@ -76,7 +74,6 @@ func (writer *ImageFileWriterImpl) WriteImageFile(simpleFileName string, imageBy
err = writer.fs.WriteBinaryFile(fullyQualifiedTargetImageFilePath, imageBytes)
if err == nil {
writer.imageFilesWrittenCount = writer.imageFilesWrittenCount + 1
log.Printf("Image file has been created: %s\n", fullyQualifiedTargetImageFilePath)
}
}
}
Expand Down

0 comments on commit 4a469ad

Please sign in to comment.