Merge pull request #7205 from filecoin-project/feat/reduce-startup-spam

Reduce lotus-miner startup spam
This commit is contained in:
Steven Allen 2021-08-27 12:49:46 -07:00 committed by GitHub
commit 714635c75c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -575,7 +575,6 @@ func (m *Manager) FinalizeSector(ctx context.Context, sector storage.SectorRef,
}
func (m *Manager) ReleaseUnsealed(ctx context.Context, sector storage.SectorRef, safeToFree []storage.Range) error {
log.Warnw("ReleaseUnsealed todo")
return nil
}

View File

@ -129,7 +129,6 @@ func (m *Sealing) handleRemoving(ctx statemachine.Context, sector SectorInfo) er
func (m *Sealing) handleProvingSector(ctx statemachine.Context, sector SectorInfo) error {
// TODO: track sector health / expiration
log.Infof("Proving sector %d", sector.SectorNumber)
cfg, err := m.getConfig()
if err != nil {