Skip to content

Commit

Permalink
Merge pull request #8213 from filecoin-project/fix/overlog-manager-ru
Browse files Browse the repository at this point in the history
fix:sealing:Less verbose sector manager logging
  • Loading branch information
magik6k authored Mar 1, 2022
2 parents 6291c0c + f138ae8 commit 714ce54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extern/sector-storage/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ func (m *Manager) Remove(ctx context.Context, sector storage.SectorRef) error {
func (m *Manager) ReplicaUpdate(ctx context.Context, sector storage.SectorRef, pieces []abi.PieceInfo) (out storage.ReplicaUpdateOut, err error) {
ctx, cancel := context.WithCancel(ctx)
defer cancel()
log.Errorf("manager is doing replica update")
log.Debugf("manager is doing replica update")
wk, wait, cancel, err := m.getWork(ctx, sealtasks.TTReplicaUpdate, sector, pieces)
if err != nil {
return storage.ReplicaUpdateOut{}, xerrors.Errorf("getWork: %w", err)
Expand Down

0 comments on commit 714ce54

Please sign in to comment.