Skip to content

Commit d7946ec

Browse files
committed
Add note for README
1 parent 1775669 commit d7946ec

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Gin is a web framework written in Go (Golang). It features a martini-like API wi
3535
- [Blank Gin without middleware by default](#blank-gin-without-middleware-by-default)
3636
- [Using middleware](#using-middleware)
3737
- [How to write log file](#how-to-write-log-file)
38+
- [Custom Log Format](#custom-log-format)
3839
- [Model binding and validation](#model-binding-and-validation)
3940
- [Custom Validators](#custom-validators)
4041
- [Only Bind Query String](#only-bind-query-string)
@@ -527,6 +528,43 @@ func main() {
527528
}
528529
```
529530

531+
### Custom Log Format
532+
```go
533+
func main() {
534+
router := gin.New()
535+
536+
// LoggerWithFormatter middleware will write the logs to gin.DefaultWriter even if you set with GIN_MODE=release.
537+
// By default gin.DefaultWriter = os.Stdout
538+
router.Use(gin.LoggerWithFormatter(func(param gin.LogFormatterParams) string {
539+
540+
// your custom format
541+
return fmt.Sprintf("%s - [%s] \"%s %s %s %d %s \"%s\" %s\"\n",
542+
param.ClientIP,
543+
param.TimeStamp.Format(time.RFC1123),
544+
param.Method,
545+
param.Path,
546+
param.Request.Proto,
547+
param.StatusCode,
548+
param.Latency,
549+
param.Request.UserAgent(),
550+
param.ErrorMessage,
551+
)
552+
}))
553+
router.Use(gin.Recovery())
554+
555+
router.GET("/ping", func(c *gin.Context) {
556+
c.String(200, "pong")
557+
})
558+
559+
router.Run(":8080")
560+
}
561+
```
562+
563+
**Sample Output**
564+
```
565+
::1 - [Fri, 07 Dec 2018 17:04:38 JST] "GET /ping HTTP/1.1 200 122.767µs "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.80 Safari/537.36" "
566+
```
567+
530568
### Model binding and validation
531569

532570
To bind a request body into a type, use model binding. We currently support binding of JSON, XML, YAML and standard form values (foo=bar&boo=baz).

0 commit comments

Comments
 (0)