package main
import (
"fmt"
"go.uber.org/zap"
)
func main() {
l, _ := zap.NewProduction()
l.Info("fart")
fmt.Println("bing bong")
}