Skip to content

Commit

Permalink
Version up.
Browse files Browse the repository at this point in the history
  • Loading branch information
udhos committed Feb 11, 2021
1 parent c09681a commit 8227f94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions goben/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"unicode"
)

const version = "0.4"
const version = "0.5"

type hostList []string

Expand Down Expand Up @@ -116,7 +116,7 @@ func main() {
app.listeners = []string{app.defaultPort}
}

log.Printf("goben version " + version + " runtime " + runtime.Version() + " GOMAXPROCS=" + strconv.Itoa(runtime.GOMAXPROCS(0)))
log.Printf("goben version " + version + " runtime " + runtime.Version() + " GOMAXPROCS=" + strconv.Itoa(runtime.GOMAXPROCS(0)) + " OS=" + runtime.GOOS + " arch=" + runtime.GOARCH)
log.Printf("connections=%d defaultPort=%s listeners=%q hosts=%q",
app.connections, app.defaultPort, app.listeners, app.hosts)
log.Printf("reportInterval=%s totalDuration=%s", app.opt.ReportInterval, app.opt.TotalDuration)
Expand Down

0 comments on commit 8227f94

Please sign in to comment.