Emptyhua
Results
1
issues of
Emptyhua
```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",...