(ctx context.Context, key, value string)
| 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) |
| 49 | return k.kapi.Update(ctx, key, value) |
| 50 | } |
| 51 | |
| 52 | func (k KeysAPILogger) Watcher(key string, opts *etcd.WatcherOptions) etcd.Watcher { |
| 53 | k.log.Debug("Watcher: key: %v opts: %v", key, opts) |