go-logging icon indicating copy to clipboard operation
go-logging copied to clipboard

the logging package for golang

Results 3 go-logging issues
Sort by recently updated
recently updated
newest added

Whats difference between Sync and Async benchmarks? Your code are equal!!! How to force sync or async mode?

```golang package main import ( "github.com/ccding/go-logging/logging" ) type Resp struct { Msg string } func main() { logger, _ := logging.SimpleLogger("main") resp := &Resp{"hello"} logger.Errorf("resp=%+v", resp) resp.Msg = "world" logger.Errorf("resp=%+v",...

It seems if [requestSize](https://github.com/ccding/go-logging/blob/master/logging/logging.go#L48) and [queueSize](https://github.com/ccding/go-logging/blob/master/logging/logging.go#L47) gets full then the go-routine who is invoking go-logging for logging will get blocked. It will be good if:- 1. go-logging allows the `requestSize`,...