Compare commits

..

No commits in common. "master" and "v0.0.1" have entirely different histories.

View file

@ -9,12 +9,10 @@ func NewErrorOnlyArchiver(conf *Config) func(string, error) {
return func(filePath string, archiveErr error) {
if archiveErr != nil {
err := writeErrorFile(conf, filePath, archiveErr)
if err != nil {
logger.Error(err)
}
}
}
}
func writeErrorFile(conf *Config, filePath string, archiveErr error) error {
if archiveErr != nil {