Skip to content

Commit

Permalink
chore: clean up loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
alvin-reyes committed Sep 20, 2023
1 parent c4a7e70 commit 6443521
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions whypfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,6 @@ func (p *Node) setupDatastore() error {
dht.BucketSize(20),
)

fmt.Println("host", p.Host)
frt, err := fullrt.NewFullRT(p.Host, dht.DefaultPrefix, dhtopts)
if err != nil {
return xerrors.Errorf("constructing fullrt: %w", err)
Expand Down Expand Up @@ -625,9 +624,6 @@ func constructBlockstore(bscfg string) (DeleteManyBlockstore, string, error) {
if err != nil {
return nil, "", err
}
fmt.Println("spec", spec)
fmt.Println("params", params)
fmt.Println("path", path)

switch spec {
case "flatfs":
Expand Down Expand Up @@ -779,7 +775,6 @@ func (p *Node) GetDirectoryWithCid(ctx context.Context, c cid.Cid) (ufsio.Direct
if err != nil {
return nil, err
}
fmt.Println("node", node)
directory, err := ufsio.NewDirectoryFromNode(p.DAGService, node)
if err != nil {
return nil, err
Expand Down

0 comments on commit 6443521

Please sign in to comment.