()
| 627 | } |
| 628 | |
| 629 | func ExampleContext_Fields_slice() { |
| 630 | fields := []interface{}{ |
| 631 | "bar", "baz", |
| 632 | "n", 1, |
| 633 | } |
| 634 | |
| 635 | log := zerolog.New(os.Stdout).With(). |
| 636 | Str("foo", "bar"). |
| 637 | Fields(fields). |
| 638 | Logger() |
| 639 | |
| 640 | log.Log().Msg("hello world") |
| 641 | |
| 642 | // Output: {"foo":"bar","bar":"baz","n":1,"message":"hello world"} |
| 643 | } |
| 644 | |
| 645 | func ExampleContext_Times() { |
| 646 | t1 := time.Time{} |