[go-nuts] Implement package level logging

2020-06-11 Thread Chashika Weerathunga
hi, logging Frameworks like log4j (for java) we can configure log levels for specific packages. My go project I am using *logrus* ( https://github.com/sirupsen/logrus) framework for logging. It doesn't support direct package level log enable disable support. I want to know few basic things

Re: [go-nuts] Re: Build management mechanism for go lang

2020-05-27 Thread Chashika Weerathunga
Thank you @Henrik. I will try this. On Wednesday, May 27, 2020 at 12:22:40 PM UTC+5:30, Henrik Johansson wrote: > > I usually use make for that in combination with Goreleaser > https://github.com/goreleaser/goreleaser/ . > > > On Wed, May 27, 2020 at 7:18 AM Chashika We

[go-nuts] Re: Build management mechanism for go lang

2020-05-26 Thread Chashika Weerathunga
go mod, go build fine. Also I want to pack(zip) a executable and other few directories into a folder. And also need to manage project version. In maven we can do tasks like this. So I want to manage all the things in flexible way. On Wednesday, May 27, 2020 at 10:30:21 AM UTC+5:30, Chashika