Merge pull request #917 from DevDevious/issue_914

Fix for #914
pull/918/head
Fenny 2020-10-11 01:42:30 +02:00 committed by GitHub
commit b55a0b3080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
app.go
View File

@ -778,7 +778,7 @@ func (app *App) startupMessage(addr string, tls bool, pids string) {
cBlack,
centerValue(" Fiber v"+Version, 49),
center(addr, 49),
value(strconv.Itoa(app.handlerCount), 14), value(strconv.Itoa(runtime.NumCPU()), 14),
value(strconv.Itoa(app.handlerCount), 14), value(strconv.Itoa(runtime.GOMAXPROCS(0)), 14),
value(isPrefork, 14), value(strconv.Itoa(os.Getpid()), 14),
cReset,
)