1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-23 09:04:23 +00:00

Update logger.md

This commit is contained in:
Fenny 2020-07-02 12:57:59 +02:00
parent babfe1567a
commit a5b8955990

View File

@ -35,7 +35,7 @@ func main() {
// Pass a custom config
app.Use(middleware.Logger(middleware.LoggerConfig{
Format: "${method} ${path}",
Format: "${time} ${method} ${path}",
TimeFormat: "15:04:05",
Output: os.Stdout,
}))