Skip to content

Commit

Permalink
Corrected mistake in the sum of objects
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed May 30, 2022
1 parent 2ccf4ac commit 428fa80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/engine/loaders.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func Load(loaders []Loader, path string, cb ProgressCallbackFunc) ([]loaderobjec

for _, lo := range los {
loaderproduced += lo.Len()
totalobjects += loaderproduced
totalobjects += lo.Len()
aos = append(aos, loaderobjects{loader, lo})
}
log.Info().Msgf("Loader %v produced %v objects in %v collections", loader.Name(), loaderproduced, len(los))
Expand Down

0 comments on commit 428fa80

Please sign in to comment.