logxi
logxi copied to clipboard
A 12-factor app logger built for performance and happy development
Usually: 1) panic generate a lot of unuseful traces 2) should be catch and logged additionally 3) defer not make sense, cause it last line in the method This PR...
Are you interested in getting help maintaining logxi? I'd be happy to help with the outstanding issues if you are open to letting other people help you. There is little...
When calling `Warn()` or `Trace()` only with a string, the happyDevFormatter prints an empty "in:" at the end of the line. The [according code in the happyDeFormatter.go](https://github.com/mgutz/logxi/blob/master/v1/happyDevFormatter.go#L351) does not seem...
Under a project that depends on `github.com/mgutz/logxi`, when I migrate the dependency management to `go mod`, and run `go build`, then I see: ``` go: finding github.com/mgutz/logxi latest build github.com/myorg/myproj/cmd:...
Im failing to understand the purpose of returning back the error i sent to log.Error and log.Warn. I already have the error and the source code shows that you do...
A video link is better, I think.
would be awesome if this library would support context loggers, so you can for example at each request set variables in the logger and pass it along to other parts...
Hello, would it be possible to make default "_t" format more precise than seconds? Ideally `ms` or `us`. The reason for this is following: If you have some log parsing...