fix: remove print statement when writing data to an output directory

Signed-off-by: ankitm123 <ankitmohapatra123@gmail.com>
pull/8673/head
ankitm123 5 years ago
parent 662090a37e
commit b244e20f05
No known key found for this signature in database
GPG Key ID: 35A49667773B9DF2

@ -197,7 +197,6 @@ func writeToFile(outputDir string, name string, data string, append bool) error
return err
}
fmt.Printf("wrote %s\n", outfileName)
return nil
}

@ -500,8 +500,6 @@ func writeToFile(outputDir string, name string, data string, append bool) error
if err != nil {
return err
}
fmt.Printf("wrote %s\n", outfileName)
return nil
}

Loading…
Cancel
Save