Codebase list golang-github-go-kit-kit / 1984f57
Merge pull request #380 from dvrkps/patch-1 log: fix typo in readme Peter Bourgon authored 7 years ago GitHub committed 7 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
6767 )
6868
6969 func main() {
70 logger := kitlog.NewJSONLogger(log.NewSyncWriter(os.Stdout))
70 logger := kitlog.NewJSONLogger(kitlog.NewSyncWriter(os.Stdout))
7171 stdlog.SetOutput(kitlog.NewStdlibAdapter(logger))
7272 stdlog.Print("I sure like pie")
7373 }