go get -u github.com/gofiber/fiber
go get -u github.com/gofiber/logger
Format
defines the logging format with defined variables
Default: "${time} ${method} ${path} - ${ip} - ${status} - ${latency}\n"
Possible values: time
, ip
, ips
, url
, host
, method
, path
, protocol
, route
, referer
, ua
, latency
, status
, body
, error
, bytesSent
, bytesReceived
, header:<key>
, query:<key>
, form:<key>
, cookie:<key>
package main
import (
"github.com/gofiber/fiber"
"github.com/gofiber/logger"
)
func main() {
app := fiber.New()
app.Use(logger.New(logger.Config{
// Optional
Format: "${time} ${method} ${path} - ${ip} - ${status} - ${latency}\n",
}))
app.Get("/", func(c *fiber.Ctx) {
c.Send("Welcome!")
})
app.Listen(3000)
}
curl http://localhost:3000