diff --git a/main.go b/main.go index e071779..1c40f00 100644 --- a/main.go +++ b/main.go @@ -8,6 +8,7 @@ import ( "fmt" "math/rand" "os" + "runtime/debug" "strconv" "time" @@ -98,6 +99,11 @@ func main() { }, ) + if buildInfo, ok := debug.ReadBuildInfo(); ok { + log.Debug().Msgf("%v", buildInfo.GoVersion) + log.Debug().Msgf("%v", buildInfo.Settings) + } + err := ctx.Run(&cli.Globals) ctx.FatalIfErrorf(err) }