Improve logging of updated update indexes

This commit is contained in:
Daniel 2021-11-09 10:11:58 +01:00
parent daed152e6d
commit 08da6e1d7c

View file

@ -99,7 +99,7 @@ func (reg *ResourceRegistry) downloadIndex(ctx context.Context, client *http.Cli
log.Warningf("%s: failed to save updated index %s: %s", reg.Name, idx.Path, err)
}
log.Infof("%s: updated index %s", reg.Name, idx.Path)
log.Infof("%s: updated index %s with %d entries", reg.Name, idx.Path, len(newIndexData))
return nil
}