Log a message at the given level with data key/value pairs. data may be nil.
(ctx context.Context, level LogLevel, msg string, data map[string]any)
| 52 | type Logger interface { |
| 53 | // Log a message at the given level with data key/value pairs. data may be nil. |
| 54 | Log(ctx context.Context, level LogLevel, msg string, data map[string]any) |
| 55 | } |
| 56 | |
| 57 | // LoggerFunc is a wrapper around a function to satisfy the pgx.Logger interface |
no outgoing calls