Compare commits

..

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

View file

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