(ctx context.Context, key string, opts *etcd.GetOptions)
| 20 | } |
| 21 | |
| 22 | func (k KeysAPILogger) Get(ctx context.Context, key string, opts *etcd.GetOptions) (*etcd.Response, error) { |
| 23 | k.log.Debug("Get: key: %v opts: %v", key, opts) |
| 24 | return k.kapi.Get(ctx, key, opts) |
| 25 | } |
| 26 | |
| 27 | func (k KeysAPILogger) Set(ctx context.Context, key, value string, opts *etcd.SetOptions) (*etcd.Response, error) { |
| 28 | k.log.Debug("Set: key: %v value: %v opts: %v", key, value, opts) |