Compare commits

...

1 commit

Author SHA1 Message Date
76c2a7be5e
fix ErrorOnlyArchiver logging Error, also when there is none
All checks were successful
go/archiver/pipeline/head This commit looks good
2024-10-26 19:13:32 +02:00

View file

@ -9,7 +9,9 @@ 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)
logger.Error(err) if err != nil {
logger.Error(err)
}
} }
} }
} }