Reduce noise

This commit is contained in:
Alexandre Bruyant 2024-01-07 16:38:07 +01:00
parent 81a0a9f9e8
commit a3a692b5f2

View File

@ -120,7 +120,6 @@ func main() {
return nil
}
githubactions.Infof("Reading %v", innerPath)
w, err = mwriter.CreateIpfsFilePart(innerPath, innerPath)
if err != nil {
return err
@ -135,8 +134,6 @@ func main() {
written, err := io.Copy(w, fileReader)
if err != nil {
return fmt.Errorf("error copying %s (%d bytes written): %v", innerPath, written, err)
} else {
githubactions.Infof("Read %v bytes from %s", written, innerPath)
}
return nil