Hello,
i am run go mod tidy, and always stop when downloading kafka-go.
is the kafka-go library the problem?or how to find out what's going on?
is there an option to view log information or something?
thanks.
May be these two flags are helpful for getting more information or to make tidy continue when something fails.
$ go help mod tidy
...
The -v flag causes tidy to print information about removed
modules
to standard error.
The -e flag causes tidy to attempt to proceed despite errors
encountered while loading packages.
...
See https://golang.org/ref/mod#go-mod-tidy for more about 'go mod tidy'.
BR,
Roland
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/CA%2BZKhg3E55UvpnyYYkY7Lme%3DH%2By8h7uqELsvE-XMW8_4%2BXZ0Gw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/2a922bdf-b5df-5b8f-4d9e-1c7dafc757a0%40gmail.com.
On 24-Feb-2022, at 11:50 AM, Rijal Asep Nugroho <rijal.ase...@gmail.com> wrote:
--