(ctx context.Context, key, value string, opts *etcd.SetOptions)
| 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) |
| 29 | return k.kapi.Set(ctx, key, value, opts) |
| 30 | } |
| 31 | |
| 32 | func (k KeysAPILogger) Delete(ctx context.Context, key string, opts *etcd.DeleteOptions) (*etcd.Response, error) { |
| 33 | k.log.Debug("Delete: key: %v opts: %v", key, opts) |