Logger returns the logger with the context previously set.
()
| 15 | |
| 16 | // Logger returns the logger with the context previously set. |
| 17 | func (c Context) Logger() Logger { |
| 18 | return c.l |
| 19 | } |
| 20 | |
| 21 | // Fields is a helper function to use a map or slice to set fields using type assertion. |
| 22 | // Only map[string]interface{} and []interface{} are accepted. []interface{} must |
no outgoing calls