Ctx returns the Logger associated with the ctx. If no logger is associated, a disabled logger is returned.
(ctx context.Context)
| 127 | // Ctx returns the Logger associated with the ctx. If no logger |
| 128 | // is associated, a disabled logger is returned. |
| 129 | func Ctx(ctx context.Context) *zerolog.Logger { |
| 130 | return zerolog.Ctx(ctx) |
| 131 | } |