Hily Jiang
Results
2
issues of
Hily Jiang
Data race test failed when in concurrent systems. The test code can be found here: #74
``` go package main import ( "os" "time" "github.com/op/go-logging" ) func main() { go func() { test("test1") }() test("test2") time.Sleep(time.Second) } func test(name string) { backend := logging.NewLogBackend(os.Stdout, "", 0)...