Skip to content

Commit

Permalink
Use standard logger
Browse files Browse the repository at this point in the history
  • Loading branch information
harry-hov committed Jan 31, 2023
1 parent 4ecb4ed commit 1bf579a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/gnolang/gnomod/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package gnomod
import (
"errors"
"fmt"
"log"
"os"
"path/filepath"

Expand All @@ -29,7 +30,7 @@ func (f *File) FetchDeps() error {
}

for _, r := range f.Require {
fmt.Println("fetching", r.Mod.Path)
log.Println("fetching", r.Mod.Path)
err := writePackage(gnoModPath, r.Mod.Path)
if err != nil {
return fmt.Errorf("fetching mods: %s", err)
Expand Down

0 comments on commit 1bf579a

Please sign in to comment.