(ctx context.Context, dir, value string, opts *etcd.CreateInOrderOptions)
| 40 | } |
| 41 | |
| 42 | func (k KeysAPILogger) CreateInOrder(ctx context.Context, dir, value string, opts *etcd.CreateInOrderOptions) (*etcd.Response, error) { |
| 43 | k.log.Debug("CreateInOrder: dir: %v value: %v opts: %v", dir, value, opts) |
| 44 | return k.kapi.CreateInOrder(ctx, dir, value, opts) |
| 45 | } |
| 46 | |
| 47 | func (k KeysAPILogger) Update(ctx context.Context, key, value string) (*etcd.Response, error) { |
| 48 | k.log.Debug("Update: key: %v value: %v", key, value) |