@@ -35,6 +35,7 @@ Gin is a web framework written in Go (Golang). It features a martini-like API wi
35
35
- [ Blank Gin without middleware by default] ( #blank-gin-without-middleware-by-default )
36
36
- [ Using middleware] ( #using-middleware )
37
37
- [ How to write log file] ( #how-to-write-log-file )
38
+ - [ Custom Log Format] ( #custom-log-format )
38
39
- [ Model binding and validation] ( #model-binding-and-validation )
39
40
- [ Custom Validators] ( #custom-validators )
40
41
- [ Only Bind Query String] ( #only-bind-query-string )
@@ -527,6 +528,43 @@ func main() {
527
528
}
528
529
```
529
530
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
+
530
568
### Model binding and validation
531
569
532
570
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