From 82efe01c70b39aa1ac96a3806985c26fcc46e71f Mon Sep 17 00:00:00 2001 From: Anton Evangelatov Date: Wed, 7 Jul 2021 18:00:28 +0200 Subject: [PATCH] fixup --- node/builder.go | 2 +- node/modules/storageminer.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/node/builder.go b/node/builder.go index 457f7d01e..63308dfa9 100644 --- a/node/builder.go +++ b/node/builder.go @@ -375,7 +375,7 @@ func New(ctx context.Context, opts ...Option) (StopFunc, error) { fx.Options(ctors...), fx.Options(settings.invokes...), - //fx.NopLogger, + fx.NopLogger, ) // TODO: we probably should have a 'firewall' for Closing signal diff --git a/node/modules/storageminer.go b/node/modules/storageminer.go index d9b98706e..b55903766 100644 --- a/node/modules/storageminer.go +++ b/node/modules/storageminer.go @@ -686,7 +686,6 @@ func LocalStorage(mctx helpers.MetricsCtx, lc fx.Lifecycle, ls stores.LocalStora } func RemoteStorage(lstor *stores.Local, si stores.SectorIndex, sa sectorstorage.StorageAuth, sc sectorstorage.SealerConfig) *stores.Remote { - fmt.Printf("setting RemoteStorage: %#v \n", sa) // TODO(anteva): remove me prior to merge to master return stores.NewRemote(lstor, si, http.Header(sa), sc.ParallelFetchLimit, &stores.DefaultPartialFileHandler{}) }