Commit a7120c99 authored by ztelur's avatar ztelur

change log output

parent 5ffb1425
...@@ -461,7 +461,7 @@ func (c *Client) Update(k, v string) error { ...@@ -461,7 +461,7 @@ func (c *Client) Update(k, v string) error {
// Put key value ... // Put key value ...
func (c *Client) Put(k, v string, opts ...clientv3.OpOption) error { func (c *Client) Put(k, v string, opts ...clientv3.OpOption) error {
err := c.put(k, v, opts...) err := c.put(k, v, opts...)
return perrors.WithMessagef(err, "Update k/v (key: %s value %s)", k, v) return perrors.WithMessagef(err, "Put k/v (key: %s value %s)", k, v)
} }
// Update key value ... // Update key value ...
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment