(ctx context.Context, key string, opts *etcd.DeleteOptions)
| 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) |
| 34 | return k.kapi.Delete(ctx, key, opts) |
| 35 | } |
| 36 | |
| 37 | func (k KeysAPILogger) Create(ctx context.Context, key, value string) (*etcd.Response, error) { |
| 38 | k.log.Debug("Create: key: %v value: %v", key, value) |