diff --git a/pkgs/gnolang/gnomod/file.go b/pkgs/gnolang/gnomod/file.go index 9aca7ea6332..0d89c1d12f4 100644 --- a/pkgs/gnolang/gnomod/file.go +++ b/pkgs/gnolang/gnomod/file.go @@ -3,6 +3,7 @@ package gnomod import ( "errors" "fmt" + "log" "os" "path/filepath" @@ -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)